from tkinter import* root = Tk() root.title("project title") root.geometry("500x500") Label(root, text="label").place(x=20, y=20) Button(root, text="button").place(x=30, y=20)