Skip to content

Instantly share code, notes, and snippets.

@FeraruSilviuMarian
Created July 24, 2018 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FeraruSilviuMarian/35d546404fc3aa4af73942ed64213960 to your computer and use it in GitHub Desktop.
Save FeraruSilviuMarian/35d546404fc3aa4af73942ed64213960 to your computer and use it in GitHub Desktop.
class Human:
def __init__(self, name, age, powerLevel):
self.name = name
self.age = age
def sayHello(self):
print('hello, my name is', self.name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment