小王同学 - Python3使用内置CSV模块读写CSV格式文件 的评论 https://feelncut.com/2018/01/10/52.html ```python import csv # open的时候可以指定编码 csv_reader = csv.reader(open('1.csv')) csv_writer = csv.wri...