키오스크 프로그램(Tkinter)
최종 코드 from tkinter import *from tkinter import fontroot = Tk()root.title("햄버거 주문 키오스크")root.geometry("612x700")font_style = font.Font(family="굴림체", size=12)root.minsize(width=612, height=700)root.maxsize(width=612, height=700)photo1 = PhotoImage(file="더블.png")photo2 = PhotoImage(file="모짜.png")photo3 = PhotoImage(file="빅불.png")photo4 = PhotoImage(file="찐빙수.png")photo5 = PhotoImage(file="치즈스틱.png"..
2024.05.13