我得到一个无效的语法错误,其中value = self.amt

时间:2015-02-04 15:47:09

标签: python

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)

1 个答案:

答案 0 :(得分:2)

您在,

之后忘记了.format()