我正在生成2个字符排列的图像,并使用arabic_reshaper
来加入字符。 2个字符的2个排列将生成4个图像,但{1}}在t1 = arabic_reshaper
时生成错误"Expected String or buffer"
请问问题是否不清楚。
arabic_reshaper.reshape(word).
答案 0 :(得分:1)
问题是itertools.permutations
产生一个元组。
您需要将其转换为字符串。像这样:
for word in itertools.permutations( list_of_letters,i):
word = u''.join(word)
print word