I have a label inside a grid with a fixed width like this:
Label(popup,text="Testing",width=25,justify="left").grid(row=1,column=1,sticky="w",padx=(0,10),pady=10)
I need the text to align to the left and hide the overflow if any occurs,
How do I achieve this?
CodePudding user response: