以下內容属于 ‘f.write’ 便签:

如何将爬虫内容写入TXT,f.write()问题

爬虫内容为列表,所以改进为: # coding:UTF-8 a =[u"编码问题1",u"编码问题2",u"编码问题3"] with open("1.txt","w") as f: for i in a: test2 = i.encode('UTF-8') f.write(test2) f.close from:https:// ... (more...)