import pandas as pd 

file = pd.read_csv('<file_name>', index_col =0)

# 读某一行

# 根据列名

one_row = file.loc ['行名']

#根据索引

one_row = file.iloc [:, i]

# 读某一列

# 根据行名

one_col = file['列名']

# 根据索引

one_col = file.iloc [i,  :]


 

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐