Created
April 12, 2019 03:31
-
-
Save curious-eyes/d4a91e6ac82d6d79993b8d1625369c67 to your computer and use it in GitHub Desktop.
おためし
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
def greeting(who): | |
print('Hello, ' + who) | |
def greetings(group): | |
for who in group: | |
print('Hello, ' + who) | |
if __name__ == '__main__': | |
me = 'Python' | |
greeting(me) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment