[Python 파이썬 독학 활용2편 2일차] GUI(tkinter) - 2-2
13. 메시지 박스 import tkinter.messagebox as msgbox from tkinter import * root = Tk() root.title("WT GUI") root.geometry("640x480") # 가로 X 세로 / 대문자X 하면 실행안됨 # 기차 예매 시스템 이라고 가정 def info(): msgbox.showinfo("알림", "정상적으로 예매 완료 되었습니다.") def warn(): msgbox.showwarning("경고", "해당 좌석은 매진되었습니다.") def error(): msgbox.showerror("에러","결제 오류가 발생했습니다.") def okcancel(): msgbox.askokcancel("확인 / 취소", "해당 좌석은 유아 동반석입니..
파이썬 스터디/파이썬-Python 활용편2
2021. 8. 1. 12:26