Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 24, 2017 07:41
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/1182c862eca181209d98737a26d22312 to your computer and use it in GitHub Desktop.
Save codecademydev/1182c862eca181209d98737a26d22312 to your computer and use it in GitHub Desktop.
Codecademy export
n = ["Michael", "Lieberman"]
# Add your function here
def join_strings(words):
result = ""
for i in range(len(words)):
result = result + words[i]
return result
print join_strings(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment