+ 1
How to write in Vietnamese language
2 Respostas
+ 4
For SoloLearn (in other places, you'll have to change codepages / encodings)
# The next two lines adjust the console mode (they are required)
import sys, codecs
sys.stdout = codecs.getwriter('utf_16')(sys.stdout.buffer, 'strict')
print("truyện chưởng")
+ 1
Thanks