Skip to content

Instantly share code, notes, and snippets.

@JovaniTarnowski
Last active May 12, 2019 18:18
Show Gist options
  • Save JovaniTarnowski/6a1f54e75b0f9f1dba3d0e165cb82a85 to your computer and use it in GitHub Desktop.
Save JovaniTarnowski/6a1f54e75b0f9f1dba3d0e165cb82a85 to your computer and use it in GitHub Desktop.
Methods in Python_1
class Human():
def __init__(self, name):
self.name = name
def print_name(self):
print("Hello my name is {} !".format(self.name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment