This commit is contained in:
louiscklaw
2025-01-31 19:51:33 +08:00
parent 78d53aeddb
commit 118e4a5f39
125 changed files with 4895 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import tkinter as tk
# Create an instance of the Tk class (root window)
window = tk.Tk()
# Add widgets and functionality to the window
# Start the event loop for application execution
window.mainloop()