1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #implementation of simple GUI program from tkinter import * def printHello(): print('Hi!') #root = tkinter.TK() window=Tk() w=Label(window, text = "Python Test") b=Button(window, text = "Hello Python", command = printHello) #if clicked, run printHello function c=Button(window, text = "Quit", command = window.quit) #if clicked, quit w.pack() b.pack() c.pack() window.mainloop() | cs |
python test라는 버튼을 누르면 콘솔창에 hi를 출력하고, quit을 누르면 종료하는 기본적인 GUI 프로그램 구현 코드이다
'Programming Language > Python' 카테고리의 다른 글
'cp949' codec can't encode character '\xa0' 문제 해결법 (3) | 2019.08.28 |
---|---|
python 데이터 타입, 자료형 및 기본적인 내용 (0) | 2019.08.26 |