我一直在尝试练习,遇到了一个我无法解决的问题。 我想创建一个举重计算器,在其中插入要举起的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磅。我该怎么办?