Tkinter1 [Python] tkinter 사용 # tkinter는 GUI에 대한 표준 Python 인터페이스이며 Window 창을 생성 할 수 있다. from tkinter import * def printHello() : print('hi') # 가장 상위 레벨의 윈도우 창을 생성 root = Tk() w = Label(root, text="Python Test") # command 에서 printHello 라는 함수를 호출 Lind Number 4 b = Button(root, text="Hello Python!", command=printHello) # command에서 root.quit.로 윈도우창 종료 c = Button(root, text="Quit", command=root.quit) w.pack() b.pack() c.pack() # .. 2019. 2. 14. 이전 1 다음