Files
2023-12-10 12:52:15 +01:00

12 lines
167 B
Python

from tkinter import *
root = Tk()
# Creating a Label Widget
myLabel = Label(root, text="Hello World!")
# Shoving it onto the screen
myLabel.pack()
root.mainloop()