I'm new to tkinter so sorry if the solution is obvious. In tkinter I made a button. And I made a def`myClick: for something to happen when the button is pressed. But nothing happens after the button is pressed.
from tkinter import *
root = Tk()
def myClick():
myLabel1 = Label(root, text="you clicked me")
myLabel1.pack
myButton = Button(root, text="click me!", padx=50, command=myClick())
myButton.grid(row=1, column=1)
root.mainloop()