I'm completely new to Python, so if my question is too amateurish, please forgive me.
I installed version 1.1.6 and tried this code from manual:
So far, so good. Then I did this:Code:from appuifw import * note(u"Hello World!", "info")
The text is in Russian here. And my locale is also Russian.Code:from appuifw import * note(u"Добро пожаловать!", "info")
When I save the file in UTF-8, interpreter is objecting. When I save it in 1251 or 866 or other code page I see very interesting characters that are not Russian.
What I did wrong?

Reply With Quote


