将特定符号保存到文件失败

时间:2017-11-07 14:49:54

标签: python-3.x file save

我的代码存在问题

data='#Tk.Label(hl, text = "√((u¹)²+(u²)²)", font = "Arial 12").pack()'
file=open("File.txt", "w")
file.write(data)
file.close()

此代码有一些特殊符号,例如√,¹或²。当我尝试将此字符串保存到文件时,它会引发此错误:

UnicodeEncodeError: 'charmap' codec can't encode character '\u221a' in position 22: character maps to <undefined>

感谢您的帮助。

0 个答案:

没有答案