[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/sofitech05/Source-Code-from-Tutorials/master/Python/30_python.py [Back]  [Original]

class Enemy:
    def __init__(self, x):
        self.energy = x
    
    def get_energy(self):
        print(self.energy)

jason = Enemy(5)
sandy = Enemy(18)

jason.get_energy()
sandy.get_energy()

Web Proxy Viewer  |  New URL  |  Original Page