Bonjour,
j'ai un petit problème pour mettre mon texte a gauche, des que j'utilise (width) dans le Label mon texte ce centre ?


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
jac = Label(root, text="Gauche impossible", width=60)
    jac.grid(column=0, row=0, sticky="w")
jac = Label(root, text="Gauche possible")
    jac.grid(column=0, row=0, sticky="w")