In [1]:from Custom.mediahelper import show_video_as_html # 개발자 정의 모듈from Custom.mediahelper import print_decorator # 개발자 정의 모듈04. 텍스트 박스¶In [2]:from tkinter import *root = Tk()title_name = "YongSeokha Tkinter Project"root.title(title_name)root.geometry("640x480")# 여러 줄의 텍스트를 입력할 수 있는 Text 위젯 생성txt = Text(root, width=30, height=5)# Text 위젯을 윈도우에 배치txt.pack()# Text 위젯에 기본 텍스트를 끝에 삽입txt.insert(END,..