Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Tkinter Label에 여러 줄의 텍스트를 표시하는 방법은 무엇입니까?

<시간/>

Tkinter Label 위젯은 Label(parent, **options)을 정의하여 생성됩니다. 프로그램의 생성자. 레이블 위젯을 사용하여 모든 애플리케이션에서 텍스트 또는 이미지를 표시합니다. 텍스트를 표시하려면 텍스트에 값을 할당해야 합니다. 생성자의 속성. \n을 사용하여 레이블 위젯에 여러 줄의 텍스트를 추가할 수도 있습니다. 다음 줄 속성. 현재 텍스트를 Label 위젯의 다음 줄로 구분합니다.

# Import the tkinter library
from tkinter import *

# Create an instance of tkinter frame
win= Tk()

# Set the size of the Tkinter window
win.geometry("700x350")

# Add a label widget
label= Label(win, text= "Hello There!\n How are you?", font= ('Aerial', 17))
label.pack()

win.mainloop()

출력

위의 코드를 실행하면 여러 줄의 레이블 위젯이 표시됩니다.

Tkinter Label에 여러 줄의 텍스트를 표시하는 방법은 무엇입니까?