Python (PyCharm) If / Else 没有按预期工作


total_cost = 60
if total_cost > 30:
discount = 0.8
else:
discount = 2
total_cost *=discount
print('Tony Pay:{} USD'.format(total_cost))

它不起作用,无法产生真实的数字 我希望结果是真实的数字----->48 请告诉我有什么问题?谢谢。

你的代码应该是:

total_cost = 60
if total_cost > 30:
discount = 0.8
else:
discount = 2
total_cost *= discount
print('Tony Pay:{} USD'.format(total_cost))

最新更新