Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 18, 2015 20:35
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/8c6d71d95f370e699f33 to your computer and use it in GitHub Desktop.
Save codecademydev/8c6d71d95f370e699f33 to your computer and use it in GitHub Desktop.
Codecademy export
n = [3, 5, 7]
# Add your function here
def list_extender(lst):
lst.append(9)
return lst
print list_extender(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment