15 lines
250 B
Python
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()
|