I'm doing an application in tkinter and I need the text typed in a single Label to fit the size of the window, because otherwise I have to get using line break. Can anyone help me?
from tkinter import *
janela1 = Tk()
janela1.title("INTRODUÇÃO")
janela1.geometry("750x600+200+50")
lb2 = Label(janela1, text="\n\nSe está aqui, é porque certamente gostaria de aprender a programar,\n ou precisa de ajuda em algum assunto básico :)\n\nPrimeiramente gostaríamos de te contar um pouco sobre a nossa iniciativa!!", font="Arial 12", bg='light blue').pack()
lb3 = Label(janela1, text="\n\nO objetivo deste 'curso' é lhe ensinar o básico sobre programação utilizando a linguagem python.\nAo final dele você deve ser capaz de fazer xxxxxxx", font="Arial 12", bg="light blue").pack()
janela1.mainloop()