Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 9, 2018 05:37
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 codecademydev/91e6830115658b32754224453e8d183a to your computer and use it in GitHub Desktop.
Save codecademydev/91e6830115658b32754224453e8d183a to your computer and use it in GitHub Desktop.
Codecademy export
#Write your function here
def add_greetings(names):
for name in names:
return("Hello, " + name)
#Uncomment the line below when your function is done
print(add_greetings(["Owen", "Max", "Sophie"]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment