Hello, All:
My first post... I've looked high and low for the ability to write a Chinese language text string in a program.
For example:
myString = "你好"
So that if you say:
print myString
on the console you will see:
你好
But I have yet to be successful. First off, can Python do this, and second, what is the *easiest* way to make it happen? I'm certain I'm not the only one who would like to use Unicode in their source programs, or be able to process Unicode strings, but every article I've seen does it differently. Is there another language that will do this easily?
Surely, this is not difficult, is it?