This commit is contained in:
2023-12-10 12:52:15 +01:00
commit bb895b96df
3 changed files with 32 additions and 0 deletions
@@ -0,0 +1,11 @@
from tkinter import *
root = Tk()
# Creating a Label Widget
myLabel = Label(root, text="Hello World!")
# Shoving it onto the screen
myLabel.pack()
root.mainloop()