Lesson #1
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user