Skip to content

Instantly share code, notes, and snippets.

@aabdelfattah
Last active June 4, 2019 11: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 aabdelfattah/032182e4e06e209d78b9c4dd68df0e66 to your computer and use it in GitHub Desktop.
Save aabdelfattah/032182e4e06e209d78b9c4dd68df0e66 to your computer and use it in GitHub Desktop.
python pass object reference by value
def modify(arg):
arg += [1]
l = [2]
modify(l)
print(l) # >> [2, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment