python3 读取csv

mac2024-03-22  28

import csv with open('test5000.csv')as f: f_csv = csv.reader(f) for row in f_csv: print(row)
最新回复(0)