본문 바로가기
Engineering WIKI/Python

[Python] tkinter 사용

by wonos 2019. 2. 14.
# 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()
# 윈도우 창을 윈도우가 종료될 때까지 실행 시킨다.
root.mainloop()