A_quantity = 10
B_quantity = 20
量の量
N = float (input('please enter the quantity of package: '))
X_total = float (N*99.00)
入力からの手数料
Q_discount = (0.2*X_total)
W_discount = (X_total*0.3)
入力合計からの割引
Y_total = (X_total-Q_discount)
M_total = (X_total-W_discount)
割引料金
def main ():
if N >= A_quantity:
print ('the total cost is $', \
format (Y_total, ',.2f'))
else:
if N >= B_ quantity:
print ('the total cost is $', \
format (M_total, ',.2f'))
main ()
結果は $792.00 で 10 個のパッケージになるはずです
20 パッケージで $1,380.00
しかし、2 番目のステートメントでも 20% の割引が適用され、合計で $1549.00 になりますが、30% の割引しか得られないはずです。