windows - Auto newline when print unicode in console, python 3.4 -


i use python 3.4, windows console, , chcp 65001 (font consolas).

this code:

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

result:

ô ô 

but when print more unicode character, it's auto make newline:

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

and question is:

  • why?
  • how print unicode string in 1 line?


Comments