此问题不重复,请勿关闭
我编辑了我的文章以获取更多细节:
能解决这个问题吗?
from tkinter import *
root = Tk()
root.geometry('400x100+400+100')
text1 = 'السلام عليكم'
root.title(text1)
label1 = Label(root, text=text1).pack()
root.mainloop()
输出:
此问题不重复,请勿关闭
我编辑了我的文章以获取更多细节:
能解决这个问题吗?
from tkinter import *
root = Tk()
root.geometry('400x100+400+100')
text1 = 'السلام عليكم'
root.title(text1)
label1 = Label(root, text=text1).pack()
root.mainloop()
输出:
2条答案
按热度按时间mhd8tkvw1#
请尝试使用其他编辑器或编译器。您的编辑器可能没有显示正确的Unicode。或者尝试在代码中编写UTF-8和/或检查编辑器设置。
w8f9ii692#
塞萨穆什
由于阿拉伯语脚本是从右到左的,因此您可以使用以下库:https://github.com/mpcabd/python-arabic-reshaper和https://github.com/MeirKriheli/python-bidi
这样的东西可以工作:
enter image description here