Answers for "get content of one column in pandas"

1

get content of one column in pandas

table = pd.read_csv("my_data.csv")
table.loc[:,"column_name"]  # The first arg (:) means from first row to last row
Posted by: Guest on October-03-2021

Code answers related to "get content of one column in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language