mirror of
https://github.com/actions/python-versions.git
synced 2025-12-13 05:56:49 +00:00
8 lines
195 B
Python
8 lines
195 B
Python
import tkinter as tk
|
|
|
|
root = tk.Tk()
|
|
label = tk.Label(root, text="Hello World!")
|
|
label.pack(padx=20, pady=20)
|
|
root.after(5000, root.destroy) # Close the Window after 5 seconds
|
|
root.mainloop()
|