1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| from tkinter import *
def afficher_lettre(lettre):
mylabel["text"] = lettre
def creer_clavier(configuration_clavier):
for ligne in configuration_clavier:
frame = Frame(window)
for lettre in ligne:
bouton = Button(
frame,
text=lettre,
command=lambda lettre=lettre: afficher_lettre(lettre),
)
bouton.pack(side=LEFT)
frame.pack()
window = Tk()
mylabel = Label(window, text="")
mylabel.pack()
configuration_clavier = [
["a", "z", "e", "r", "t", "y", "u", "i", "o", "p"],
["q", "s", "d", "f", "g", "h", "j", "k", "l", "m"],
["w", "x", "c", "v", "b", "n"],
]
creer_clavier(configuration_clavier)
window.mainloop() |