cara membaca kolom panda

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

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