当我在 python2.7 中导入 stopWords 语料库时,如何使输出显示为阿拉伯语?
How can I make the output appear in Arabic language when i import stopWords corpus in python2.7?
我使用 python 2.7 和这里显示的代码
from nltk.corpus import stopwords
sW_list=stopwords.words('arabic')
print (sW_list)
输出为:
[u'\u0625\u0630', u'\u0625\u0630\u0627', u'\u0625\u0630\u0645\u0627' ......
打印列表使用列表元素的 repr
。
sW_list = [u'\u0625\u0630', u'\u0625\u0630\u0627', u'\u0625\u0630\u0645\u0627' ]
print(' '.join(sW_list))
生产
إذ إذا إذم
我使用 python 2.7 和这里显示的代码
from nltk.corpus import stopwords
sW_list=stopwords.words('arabic')
print (sW_list)
输出为:
[u'\u0625\u0630', u'\u0625\u0630\u0627', u'\u0625\u0630\u0645\u0627' ......
打印列表使用列表元素的 repr
。
sW_list = [u'\u0625\u0630', u'\u0625\u0630\u0627', u'\u0625\u0630\u0645\u0627' ]
print(' '.join(sW_list))
生产
إذ إذا إذم