无法在 Aptana 中打印非英文字符
Cannot print non-english characters in Aptana
我是 Aptana 和 Python 的新手。
有没有办法打印非英文字符?像 ñ é ψ ü 等等
现在,当我尝试: 例如打印“ñ”时,我得到:
SyntaxError: Non-ASCII character '\xc3' in file D:\Users\User1\Documents\Aptana Studio 3 Workspace\Testing\stuff.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
我确实有 utf-8 的编码 se:
Window > 首选项 > 常规 > 工作区 > 文本编码
添加这个
# -*- coding: utf-8 -*-
在您的 python 文件的顶部
我是 Aptana 和 Python 的新手。
有没有办法打印非英文字符?像 ñ é ψ ü 等等
现在,当我尝试: 例如打印“ñ”时,我得到:
SyntaxError: Non-ASCII character '\xc3' in file D:\Users\User1\Documents\Aptana Studio 3 Workspace\Testing\stuff.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
我确实有 utf-8 的编码 se: Window > 首选项 > 常规 > 工作区 > 文本编码
添加这个
# -*- coding: utf-8 -*-
在您的 python 文件的顶部