问题1:CSV转存UTF-8格式 importcodecs src="...\\xxxx.csv"dst="...\\xxx_utf8.csv"defReadFile(filePath):withcodecs.open(filePath,"r")asf:returnf.read()defWriteFile(filePath,u,encoding="utf-8"):# with codecs.open(filePath,"w",encoding) as f:withcodecs.open(filePath,"wb")asf...