次のコードを使用して、送信ボタンをクリックしたときにエントリ/入力ボックスの内容を印刷しようとしていますが、何も起こらないようです。
def submit_answer(response):
print(response)
def get_answer():
root = Tkinter.Tk()
contentFrame = Tkinter.Frame(root)
entryWidget = Tkinter.Entry(contentFrame)
entryWidget['width'] = 50
entryWidget.pack()
contentFrame.pack()
button = Tkinter.Button(root, text='Submit', command=submit_answer(entryWidget.get()))
button.pack()
root.mainloop()
ここで私が間違っていることを誰かが指摘できますか?