Two doubts about tkinter

0

I have two doubts about the Tkinter GUI. The first is: how do I do when the text of a label is greater than the size of the label, rather than being missing, continue on the next line. The second would be how to make label texts that have "\ n" left aligned, I can only make the first item stay, the rest are centered

    
asked by anonymous 31.05.2018 / 21:51

1 answer

1

User "Message" instead of Label that both problems will be solved at once.

texto = Message(root, text="Bom dia!")
texto.pack()
    
01.06.2018 / 01:07