p
-
Python - TkInter gui 기초Python 2020. 9. 9. 18:01
Tk interface, Tk GUI toolkit. tkinter are available on most Unix platforms, as well as on Windows systems. >>> >>> import tkinter >>> tk = tkinter.Tk() >>> btn = tkinter.Button(tk, text="kkk") >>> btn.pack() >>> #tk.mainloop() # Our script will remain in the event loop until we close the window import tkinter as tk wd = tk.Tk() lb = tk.Label(wd, text="Hello Tk!") lb.pack() wd.mainloop() timer ex..