Entrez le montant de l'achat (montant de la partition) et le montant de la vente (montant de la livraison) pour calculer automatiquement le taux de coût. Soustrayez le taux de coût de 1 pour obtenir le taux de profit.
import tkinter as tk
root=tk.Tk()
root.geometry('300x200')
root.title('marge')
def btn_click():
x=float(txt_1.get())
y=float(txt_2.get())
z=txt_3.insert(0,x/y)
lbl_1 = tk.Label(text='Cloison')
lbl_1.place(x=30, y=70)
lbl_2 = tk.Label(text='livraison')
lbl_2.place(x=30, y=100)
lbl_3 = tk.Label(text='Taux de coût')
lbl_3.place(x=30, y=130)
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)
txt_3 = tk.Entry(width=20)
txt_3.place(x=90, y=130)
btn = tk.Button(root, text='Courir', command=btn_click)
btn.place(x=140, y=170)
root.mainloop()
Recommended Posts