read_csv.py 143 Bytes Edit 1 2 3 4 5 """读取csv文件"""" with open('report.csv',"r",encoding="utf-8")as f: f_csv = csv.reader(f) f_csv = list(f_csv) print(f_csv)