# -*- coding: utf-8 -*- print "ÆØÅ"
使用cmd
,powershell
或cygwin
在使用python 2.7.3在Windows 7中运行上述脚本时,我得到此输出:
ÆØÅ
该文件是UTF-8文件,在我的文本编辑器中正常工作。 如何打印“ÆØÅ”?
答案 0 :(得分:5)
在这里聚会迟到,试试
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
print "ÆØÅ"
答案 1 :(得分:3)
您可以在打印时强制执行unicode:
print u'ÆØÅ'