私は入力ボックスを持っていて、テキストを入力してボタンをクリックすると、ラベルにテキストが表示されます。入力ボックスの内容をラベルにどのように渡すのですか?
私は次のように書いていますが、入力ボックスの内容をラベルにバインドできません。
from Tkinter import *
root = Tk()
e = Entry(root)
e.pack()
def get_me():
e.get()
print e.get()
#e.delete(0, END)
bn = Button(root, text = "Click me", command = get_me)
bn.pack()
la = Label(root, font = "verdana 15 italic bold", width = 20, bg = "BLUE", fg = "RED", text = get_me)
la.pack()
mainloop()
'configure'メソッドを使って同じ結果を得ることもできます:' la.configure(text = "text") ' –