📜  如何在 tkinter 中对齐文本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:43.196000             🧑  作者: Mango

代码示例1
Label(root, text='Pack', anchor='w').pack(fill='both')
# anchor='w' ---- w  for left
# anchor='e' ---- e  for right
# anchor='center' ---- center  for center