3
# -*- 编码:utf-8 -*-
打印“ÆØÅ”

在 Windows 7 中使用 python 2.7.3 运行上述脚本时,cmd我得到以下输出:powershellcygwin

ÆØÅ

该文件是一个 UTF-8 文件,在我的文本编辑器中运行良好。如何让它打印“ÆØÅ”?

4

2 回答 2

5

在这里聚会有点晚了,试试

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
print "ÆØÅ"
于 2013-03-04T12:06:38.923 回答
3

You can force unicode when printing:

print u'ÆØÅ'
于 2013-03-04T12:10:29.313 回答