Last active
May 12, 2019 18:18
-
-
Save JovaniTarnowski/6a1f54e75b0f9f1dba3d0e165cb82a85 to your computer and use it in GitHub Desktop.
Methods in Python_1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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