分配多个变量以分隔用户输入提示

时间:2019-05-21 04:31:40

标签: python-3.x pycharm

我一直在尝试练习,遇到了一个我无法解决的问题。 我想创建一个举重计算器,在其中插入要举起的45个板,然后在杠铃上也插入25个和数十个板。

到目前为止,这是我的代码:

class Weights:
    def __init__(self, b, p, q, d):
        self.barbell = b
        self.plate = p
        self.quarter = q
        self.dime = d

    def Bench(self):
        print("The total weight is: ", self.plate + self.barbell + self.dime + self.quarter, " pounds")

我想添加类似print("The total weight is: ", self.plate * int(input()) + self.barbell + self.dime * int(input()) + self.quarter * int(input()), " pounds")的输入,但这将无法工作...

allWeight = Weights(45, 45, 25, 10)

我希望PyCharm控制台中出现提示,您可以输入

2
2
2

,结果是205磅。我该怎么办?

0 个答案:

没有答案