Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created March 11, 2020 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Celia-code/668fab046927a17e37dac41965e5b80d to your computer and use it in GitHub Desktop.
Save Celia-code/668fab046927a17e37dac41965e5b80d to your computer and use it in GitHub Desktop.
This is gor pandas
import pandas as pd
#建立dataframe
data = pd.DataFrame({
"name":["Amy", "Bob", "Chole"],
"score":[100, 80, 69]
})
print(data)
#打印出
"""
name score
0 Amy 100
1 Bob 80
2 Chole 69
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment