Tkinter 창의 제목 표시줄을 제거하려면 wm_attributes('type', 'value') 를 사용할 수 있습니다. 속성의 유형을 지정하여 메서드. 다음 예에서는 '전체 화면 ', 창의 제목 표시줄을 제거하는 부울 값입니다.
예시
#Import the tkinter library
from tkinter import *
#Create an instance of tkinter frame
win = Tk()
win.geometry("700x350")
#Create a Label to print the Name
label= Label(win, text="This is a New Line Text", font= ('Helvetica 14 bold'), foreground= "red3")
label.pack()
win.wm_attributes('-fullscreen', 'True')
win.mainloop() 출력
위의 코드를 실행하면 제목 표시줄이 없는 전체 화면 창이 표시됩니다.
