Pandas 读取CSV文件

Result = pandas.read_csv(csvfile)
print(Result)

1. 参数 index_col, 指定作为索引的列, 默认为 False

Result = pandas.read_csv(csvfile, index_col="name")
print(Result)

参数 nrows, 指定读取行数

Result = pandas.read_csv(csvfile, nrows=5)
print(Result)

参数 usecols, 指定读取列数

Result = pandas.read_csv(csvfile, usecols=[0, 1, 2, 3])
print(Result)

2. 遍历读入的CSV内容

 for index, row in Result.iterrows():
      print(index, row)

指定固定列输出
row[col_name], col_name 列名

 for index, row in Result.iterrows():
      print(index, row[col_name])

你可能感兴趣的:(Python,pandas,python,开发语言)