别用open,而是用codecs库 import codecs. F=codecs.open('xxx.csv','r','utf-8') content=F.read() F.close() print(content) utf-8是文件编码,如果你不知道, ...
確定! 回上一頁