Skip to content

Instantly share code, notes, and snippets.

@jlggross
Created August 21, 2020 19:17
Show Gist options
  • Save jlggross/6fa9f99ff43f647aa90fffc932591be8 to your computer and use it in GitHub Desktop.
Save jlggross/6fa9f99ff43f647aa90fffc932591be8 to your computer and use it in GitHub Desktop.
Primeiro Projeto
import pandas as pd
import numpy as np
df = pd.DataFrame(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]),
columns=['a', 'b', 'c'])
print(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment