Cyrillic letters in 'Entry' widget

Martin v. Löwis loewis at informatik.hu-berlin.de
Mon Nov 11 12:41:32 EST 2002


"Bobirkhon Ismailov" <bismailov at uzavtoyul.uz> writes:

> I am trying to enter cyrillic letters in text entry widgets, but it
> looks like trash. I was wondering if is there any way to display entered
> characters correctly on screen.

Did you read my reply to your previous message?

>>> import Tkinter
>>> t=Tkinter.Entry()
>>> t.pack()
>>> t.insert(0,u'\N{CYRILLIC SMALL LETTER ZHE}\u0437')
>>> 

works fine for me. What does that give for you?

Regards,
Martin



More information about the Python-list mailing list