Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to read panda column

#one of the columns in your csv file is "Name"
print(df["Name"])

for i in df["Name"]:
  print("Name is :",i)
Source by www.kite.com #
 
PREVIOUS NEXT
Tagged: #read #panda #column
ADD COMMENT
Topic
Name
4+3 =