Files
2023-12-10 13:15:35 +01:00

15 lines
250 B
Python

from tkinter import *
root = Tk()
def myClick():
myLabel = Label(root, text="Look! I clicked a Button!")
myLabel.pack()
myButton = Button(root, text="Click Me!", command=myClick, fg="blue", bg="#000000")
myButton.pack()
root.mainloop()