Skip to content

Instantly share code, notes, and snippets.

@tiagofer
Last active October 5, 2019 03:34
Show Gist options
  • Save tiagofer/033e8c4cebfe07362a89f313a4f6a5ab to your computer and use it in GitHub Desktop.
Save tiagofer/033e8c4cebfe07362a89f313a4f6a5ab to your computer and use it in GitHub Desktop.
#importa a biblioteca Pandas
import pandas as pd
#Cria um DataFrame simples
df = pd.DataFrame([0,1,2,3,4,5],columns=["teste"])
#Imprime este dataframe no terminal
print (df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment