可以使用os库以及chardet库中的方法,进行遍历循环文件名称,然后修改编码格式 from os import listdir from chardet import detect fns = (fn for fn in listdir() if fn.endswith('.csv')) for fn in fns: with open(fn, 'rb+') as fp: content = fp.read() encoding = detect(content)['encoding']...
步骤一:读取UTF-8格式的CSV文件 首先,我们需要使用Python的csv模块来读取UTF-8格式的CSV文件。我们可以使用以下代码来读取CSV文件并将其内容存储在一个列表中: importcsv data=[]withopen('input_file.csv','r',encoding='utf-8')asfile:csv_reader=csv.reader(file)forrowincsv_reader:data.append(row) 1....