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

Tkinter Text에서 텍스트를 줄 바꿈하는 방법은 무엇입니까?

<시간/>

단어 줄 바꿈은 모든 텍스트 정보에서 중요한 역할을 합니다. 특정 텍스트의 섹션을 가능한 한 줄의 여러 섹션에 맞추는 것은 모든 텍스트 편집기에서 중요한 기능입니다. 텍스트 문서의 너비에 내용을 맞추는 데 사용됩니다. Tkinter에서는 wrap을 사용하여 텍스트 위젯의 단어나 문자를 줄바꿈할 수 있습니다. 특성. 랩 속성의 기본값은 – WORD, CHARS 또는 NONE입니다.

예시

이 예에서는 wrap을 사용하여 텍스트 위젯의 모든 단어를 래핑합니다. 재산.

#Import tkinter library
from tkinter import *
from tkinter import ttk
#Create an instance of Tkinter frame or window
win= Tk()
#Set the geometry of tkinter frame
win.geometry("750x250")
#Create a text widget and wrap by words
text= Text(win,wrap=WORD)
text.insert(INSERT,"Python is an interpreted, high-level and general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant indentation.")
text.pack()
win.mainloop()

출력

위의 코드를 실행하면 일부 텍스트가 포함된 창이 표시됩니다. 텍스트는 사용자가 문서나 텍스트 파일을 쉽게 읽을 수 있도록 단어로 둘러싸여 있습니다.

Tkinter Text에서 텍스트를 줄 바꿈하는 방법은 무엇입니까?