from tkinter import* a=Tk() a.title("Renudula") a.geometry("500x500") a.config(bg="cyan") #labels #1. ispis = Label(a, text = "Hello world" , bg = "black" , fg="white", font=("Arial",12)) ispis.place(x =50, y=50) #2. ispis = Label(a, text = "Hello world" , bg = "black" , fg="white", font=("Arial",12)) ispis.place(x =50, y=100) #3. ispis = Label(a, text = "Hello world" , bg = "black" , fg="white", font=("Arial",12)) ispis.place(x =50, y=150) #4. ispis = Label(a, text = "Hello world" , bg = "black" , fg="white", font=("Arial",12)) ispis.place(x =50, y=200) #entrys: #1 textbox = Entry(a,width=12) textbox.place(x =200, y=50) #2 textbox = Entry(a,width=12) textbox.place(x =200, y=100) #3 textbox = Entry(a,width=12) textbox.place(x =200, y=150)