我不知道如何在类之间进行交互

时间:2013-11-28 14:45:15

标签: python-2.7

如果我有这两个课程:

class bandido:
    def __init__(self, vida, ataque):
        self.vida = random.randint(40,81)
        self.ataque = random.randint(15,46)
class xiaoling:
    def __init__(self, vida, ataque):
        self.vida = 100
        self.ataque = 100

我该怎么打?看谁赢了?

0 个答案:

没有答案