Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GUIを作成していて、ウィンドウを閉じるための終了ボタンを追加したいと考えています。唯一の問題は、次のコードでボタンを追加するときです。
root = Tk()
Exit = Button(root, text = "Quit", command = root.quit()).grid(row = 6, column = 1)
GUI ウィンドウがクラッシュします。Windows 7 と Python 3.2 を実行しています。
これを試して:
root = Tk() Exit = Button(root, text = "Quit", command = root.quit).grid(row = 6, column = 1)
root.quit() で括弧を外しました。問題が解決するかどうかを確認します