Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一个新手,我不知道如何设置我的控制台来打印我在运行此代码时使用 Wing IDE 的 urdu / 阿拉伯语字符
print "طجکسعبکبطکسبطب"
我在我的控制台上得到了这个
طجکسعبکبطکسبطب</p>
您应该将字符串参数编码为 unicodeUTF-8或更高版本。将整个代码包装在 unicode 中,和/或将单个字符串 args 也标记为 unicode ( u'your text')。
UTF-8
u'your text'
此外,您应该确保在终端/提示窗口中也启用了 unicode。
#!/usr/bin/env python # -*- coding: UTF-8 -*- arabic_words = u'لغت العربیه' print arabic_words