我不能设置tkinter对象的重量。
from tkinter import *
window = Tk()
button = Button(text="Click!",height=2,widht=5)
button.pack()
_tkinter.TclError:未知选项“ -widht”
答案 0 :(得分:0)
您输入了错误:您需要设置wid th ,而不是wid ht 。
这里是正确的代码:
winC = 3, winInd =[1, 2, 3]
winC = 4, winInd =[5, 6, 7]
PS:我认为您选择的宽度太小。尝试使用from tkinter import *
root = Tk() # create the root window
button = Button(text="Click me!", height=2, width=5) # create the button
button.pack() # and pack it
或更多而不是width=7
。
答案 1 :(得分:0)
还请确保将root.mainloop()放在代码的末尾,以确保其不断更新并平稳运行。