如何打印阿拉伯字符?

时间:2016-09-19 19:41:54

标签: python pycharm nltk arabic

我想简单地阅读阿拉伯字符串并将其打印出来。使用Python 2.7和PyCharm 4.5

这是我试图运行的代码(我在SO上找到)

import nltk
sentence = "ورود ممنوع"
tokens = nltk.word_tokenize(sentence)
for t in tokens:
    print(t)

在控制台中运行此操作会产生预期结果:ورود ممنوع

但在PyCharm IDE中运行相同的代码我得到:

?
?
?
?
?
?
?
?
?

0 个答案:

没有答案