Python在写入文件时会出现unicode错误

时间:2017-09-10 01:31:56

标签: python-3.x file unicode io

我正在尝试写一个文件。

filename = "test.txt"
string = "Niñas and niños"

with open(filename, 'w') as element:
            element.write(string)

这会返回以下错误:

"Traceback (most recent call last):
  File "/Users/alex/Documents/Python/filewriter.py", line 5, in <module>
    element.write(string)
UnicodeEncodeError: 'ascii' codec can't encode character '\xf1' 
in position 2: ordinal not in range(128)"

我使用最新版本的Python,最新版本的MacOS和SublimeText3作为我的编辑。

任何人都知道发生了什么事?

1 个答案:

答案 0 :(得分:1)

使用utf-8编码打开文件,如下所示:

with open(filename, 'w', encoding='utf-8') as element: