I am working on a project that requires me to underline some text in a Tkinter Label widget. I know that the underline method can be used, but I can only seem to get it to u
Try this for underline:
mylbl=Label(Win,text='my Label',font=('Arial',9,'bold','underline')) mylbl.grid(column=0,row=1)