Skip to content

Instantly share code, notes, and snippets.

@instinctive
Created July 16, 2018 21:04
Show Gist options
  • Save instinctive/730210142edbc79f22a254f47108d641 to your computer and use it in GitHub Desktop.
Save instinctive/730210142edbc79f22a254f47108d641 to your computer and use it in GitHub Desktop.
>>> def foo(x): x.append(9)
...
>>> a = [1,2,3]
>>> a
[1, 2, 3]
>>> b = a
>>> b
[1, 2, 3]
>>> foo(a)
>>> a
[1, 2, 3, 9]
>>> b
[1, 2, 3, 9]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment