转中文
python3
filename='csvfile_'+now+'_report.csv'
csvfile=codecs.open(filename,'w')
writer = csv.writer(csvfile)
csvfile.write(bytes.decode(codecs.BOM_UTF8))
转中文
python3
filename='csvfile_'+now+'_report.csv'
csvfile=codecs.open(filename,'w')
writer = csv.writer(csvfile)
csvfile.write(bytes.decode(codecs.BOM_UTF8))
本文标题:转中文
本文链接:https://www.haomeiwen.com/subject/xenrwxtx.html
网友评论