标签: python windows python-3.x unicode windows-console
我使用Python 3.4,Windows控制台和chcp 65001(字体控制台)。
chcp 65001
这是我的代码:
print("%s" % "ô ô")
结果:
ô ô
但是当我打印出更多unicode角色时,它会自动换行:
print("%s" % "ô ô ô") ô ô ô � print("%s" % "ô ô ô ô") ô ô ô ô ô
我的问题是: