Last active
August 12, 2025 05:23
-
-
Save bru32/1429aa6174f09b5efc6cb9ee280c06ef to your computer and use it in GitHub Desktop.
Most basic tkinter skeleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tkinter as tk | |
| from tkinter import ttk | |
| root = tk.Tk() | |
| root.title("App") | |
| root.geometry("400x400+600+10") | |
| root.mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment