In [2]:from Custom.mediahelper import show_video_as_html # 개발자 정의 모듈from Custom.mediahelper import print_decorator # 개발자 정의 모듈07. 라디오 버튼¶In [2]:from tkinter import *root = Tk()title_name = "YongSeokha Tkinter Project"root.title(title_name)root.geometry("640x480")# 메뉴 선택을 안내하는 라벨을 생성하고 윈도우에 배치Label(root, text="버거를 선택하세요").pack()# 햄버거 선택을 위한 변수 선언 (정수형으로 값이 저장됨)burger_var = IntVar() # 선택된 햄버거의 값을..