SElsner píše v Po 08. 08. 2011 v 09:05 -0700: > # -*- coding: utf-8 -*- > a = "ä" > print unicode(a)
If you type national characters in python code, you need to handle them as unicode type: a = u"ä" print unicode(a) -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
