I use Python 3.4, the Windows console, and chcp 65001
(font consolas).
This is my code:
print("%s" % "ô ô")
result:
ô ô
But when i print more unicode character, it's auto make a newline:
print("%s" % "ô ô ô")
ô ô ô
�
print("%s" % "ô ô ô ô")
ô ô ô ô
ô
And my question is:
- Why?
- How to print a unicode string in one line?