📜  如何阅读熊猫专栏 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:01.784000             🧑  作者: Mango

代码示例1
#one of the columns in your csv file is "Name"
print(df["Name"])

for i in df["Name"]:
  print("Name is :",i)