• Python Turkish Characher Issue
    2 replies, posted
I cant use turkish characters in python 2.x when i type for example print "çşıüö" i see irrelevant letters how can i resolve this problem ?
Try Unicode strings (by prepending a u, like print u"çşıüö").
Also, make sure you're saving the source file as unicode.
Sorry, you need to Log In to post a reply to this thread.