我正在尝试进行简单的乘法,以便将其放入变量中

时间:2018-03-10 05:11:27

标签: python math

代码:

if item_id == 1:
    price = int(500)
    Quantity = int(input("How much do you want?"))
    total = Quantity * price
    if total < money:
        print("You have successfully bought this item.")
        money - total

只是说,如果这有帮助,我使用repl.it,一个在线代码环境。

1 个答案:

答案 0 :(得分:1)

您似乎想要更新money,因此只需将减法结果重新分配回money

money = money - total

Python有一个你可以使用的快捷操作符。

money -= total