Partagez les outils que vous avez créés pendant une courte période dans les ventes. Je l'ai créé avec Spyder (Python 3.7) en le vérifiant sur Google.
import tkinter as tk
root=tk.Tk()
root.geometry('300x200')
root.title('Employé')
def btn_click():
x=txt_1.get()
if x=="Tanaka":
txt_2.insert(0,1)
elif x=="Suzuki":
txt_2.insert(0,2)
elif x=="Yamada":
txt_2.insert(0,3)
else:
txt_2.insert(0,"N'est pas applicable")
lbl_1 = tk.Label(text='Nom de famille')
lbl_1.place(x=30, y=70)
lbl_2 = tk.Label(text='numéro d'employé')
lbl_2.place(x=30, y=100)
txt_1 = tk.Entry(width=20)
txt_1.place(x=90, y=70)
txt_2 = tk.Entry(width=20)
txt_2.place(x=90, y=100)
btn = tk.Button(root, text='Courir', command=btn_click)
btn.place(x=140, y=170)
root.mainloop()
Recommended Posts