可以使用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']...