Skip to content

Instantly share code, notes, and snippets.

@curious-eyes
Created April 12, 2019 03:31
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 curious-eyes/d4a91e6ac82d6d79993b8d1625369c67 to your computer and use it in GitHub Desktop.
Save curious-eyes/d4a91e6ac82d6d79993b8d1625369c67 to your computer and use it in GitHub Desktop.
おためし
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