탶선 2022. 8. 1. 15:56
반응형
import tkinter

tk = tkinter
window=tkinter.Tk()

def show_button():
    button_select = tk.Button(window, text="선택")
    button_next = tk.Button(window, text="다음")
    button_pre = tk.Button(window, text="이전")

    button_select.pack(side="left")
    button_next.pack(side="left")
    button_pre.pack(side="left")
show_button()

window.mainloop()
반응형