前提・実現したいこと
pythonでGUIを作ってみたいと思い本を参考にコードを書いたのですが、実行しても表示されません。
発生している問題・エラーメッセージ
bound method Misc.mainloop of <tkinter.Tk object .>
該当のソースコード
python
1import tkinter 2 3def click_btn(): 4 txt = entry.get() 5 button['text'] = txt 6 7root = tkinter.Tk() 8root.title = ('初めてのテキスト入力欄') 9root.geometry('400x300') 10entry = tkinter.Entry(width=20) 11entry.place(x=20, y=20) 12button = tkinter.Button(text='文字列の取得', command=click_btn) 13button.place(x=20, y=100) 14root.mainloop
補足情報(FW/ツールのバージョンなど)
jupyternotebookを使っています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/14 08:15