class Gold(Item):
def __init__(self, amt):
self.amt = amt
super().__init__(name="Gold",
description="A round coin with {} stamped on the front.".format(str(self.amt))
value=self.amt)
答案 0 :(得分:2)
您在,
.format()