Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 9, 2018 05:34
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/dc5ce66bfde780d18dc61cc94fb88282 to your computer and use it in GitHub Desktop.
Save codecademydev/dc5ce66bfde780d18dc61cc94fb88282 to your computer and use it in GitHub Desktop.
Codecademy export
#Write your function here
def add_greetings(names):
for name in names:
print("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