Заповніть пропуски у коді виведення елементів керування
from
import *
tk=Tk()
tk.
("400x300")
def btn_click ():
lbl2=Label (text="Привіт"+ent.get()+"!")
lbl2.place(x=100, y=100)
btn_click1 ():
lbl2=Label (text="Бувай"+ent.get()+"!")
lbl2.place(x=100, y=100)
b1=
(text="Привітання", command=btn_click)
b1.place(x=100, y=200, width=100, height=50)
b2=Button(text="Прощавання", command=btn_click1)
b2.
(x=250, y=200, width=100, height=50)
ent=Entry()
ent.place(x=250, y=150, width=100, height=30)
lbl=
(text="Ваше ім'я")
lbl.place(x=100, y=150)