python读取csv文件的某一列或某几列

python读取csv文件的某一列或某几列   import csv import pandas as pd with open('D:\Data\新建文件夹\list3.2.csv','r') as csvfile: reader = csv.reader(csvfile) column1 = [row[1]for row in reader] print(column1
相关文章
相关标签/搜索