Geben Sie den Kaufbetrag (Partitionsbetrag) und den Verkaufsbetrag (Lieferbetrag) ein, um den Kostensatz automatisch zu berechnen. Subtrahieren Sie den Kostensatz von 1, um den Gewinnsatz zu erhalten.
import tkinter as tk
root=tk.Tk()
root.geometry('300x200')
root.title('Spanne')
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='Partition')
lbl_1.place(x=30, y=70)
lbl_2 = tk.Label(text='Lieferung')
lbl_2.place(x=30, y=100)
lbl_3 = tk.Label(text='Kostensatz')
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='Lauf', command=btn_click)
btn.place(x=140, y=170)
root.mainloop()
Recommended Posts