Video code
from tkinter import *
window = Tk()
window.title("My program")
window.geometry("350x200")
window.resizable(False,False)
label = Label(window, text="Click me")
label.place(x=20,y=30,width=120,height=25)
button = Button(window, text="Click here")
button.place(x=200,y=130,width=60,height=65)
window.mainloop()