在控制台,python 3.4中打印unicode时自动换行

时间:2015-07-21 05:15:24

标签: python windows python-3.x unicode windows-console

我使用Python 3.4,Windows控制台和chcp 65001(字体控制台)。

这是我的代码:

print("%s" % "ô ô")

结果:

ô ô

但是当我打印出更多unicode角色时,它会自动换行:

print("%s" % "ô ô ô")

ô ô ô
�


print("%s" % "ô ô ô ô")

ô ô ô ô
ô

我的问题是:

  • 为什么?
  • 如何在一行中打印unicode字符串?

0 个答案:

没有答案