0
:ボタンとウィジェットが互いに干渉しないようにすることはできますか?私は自分自身のウィジェットを置く見つけ、彼らは例えば、彼らは別の行にあるにもかかわらず、互いに干渉しTkinterでは
from tkinter import *
from tkinter import ttk
root = Tk()
multi = Button(root , text ='multiplication')
multi.grid(row = 0 , column = 1 , sticky = W)
addition = Button(root , text = 'addition')
addition.grid(row = 0 , column = 0 , sticky = W)
question = Label(root ,text = 'What is 500 + 500?', font = 'times 10 bold')
question.grid(row = 1, column = 0 , sticky =W)
root.mainloop()
はこれを回避する方法はありますが、私はそれがどこに干渉しないことができます私のラベルは、上記の行の私のボタンを完全に駄目にします