美文网首页
Python 30 Programming Tutorial

Python 30 Programming Tutorial

作者: 豆表示低调 | 来源:发表于2016-08-31 11:39 被阅读0次
class Enemy:
    def __init__(self, x):
        self.energy = x

    def get_energy(self):
        print(self.energy)


jason = Enemy(5)
sandy = Enemy(9)

jason.get_energy()
sandy.get_energy()

相关文章

网友评论

      本文标题: Python 30 Programming Tutorial

      本文链接:https://www.haomeiwen.com/subject/eiaxettx.html