This commit is contained in:
louiscklaw
2025-02-01 02:01:48 +08:00
parent 8bf2589af5
commit a14cfa137f
125 changed files with 4895 additions and 0 deletions

9
task1/helloworld.py Normal file
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()