读取csv 某一列数据. import csv import pandas as pd with open('test.csv','r') as f: reader = csv.reader(f) column = [row[1] for row in reader] ...
確定! 回上一頁