from tkinter import *
window = Tk()
window.title("GUI 작품")
window.minsize(width=500, height=300)
#label
my_label =Label(text="니의 네이블",font=("Arial",24,"bold"))
my_label.pack(side="left")
my_label["text"] = "new text"
my_label.config(text="new test")
#BUTTON
i_get = 0
def button_clicked():
i_get=input.get()
my_label.config(text=i_get)
button = Button(text="CLICK ME",command=button_clicked)
button.pack()
#Entry
input= Entry(width=10)
input.pack()
window.mainloop()