Created
October 16, 2019 05:04
-
-
Save pbabbott/8005db9d786d3e87b130a21bbc059da6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
data = [['Alex',10],['Bob',12],['Clarke',13]] | |
df = pd.DataFrame(data,columns=['Name','Age'],dtype=float) | |
print (df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment