Python tkinter souligne le texte

example = Label(root, text="example", font=('Arial',9,'underline'))
example.pack()
RyanGar46