import tkinter as tk   # 모듈 가져오기

win = tk.Tk()     

win.title("API test")  # GUI 윈도우 제목

 

win.resizable(False, False) # 가로 세로 크기변경을 허용/막기 설정


win.mainloop()  # GUI 유지

+ Recent posts