Files
hdhdjshxh/task1/helloworld.py
louiscklaw a14cfa137f update,
2025-02-01 02:01:48 +08:00

10 lines
205 B
Python

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()