Skip to content

Instantly share code, notes, and snippets.

@void4
Created December 2, 2017 10:59
Show Gist options
  • Save void4/a2a13b01cc8e7c5713819c2e3510c167 to your computer and use it in GitHub Desktop.
Save void4/a2a13b01cc8e7c5713819c2e3510c167 to your computer and use it in GitHub Desktop.
class X:
def __init__(self, l=[]):
self.l = l
a,b = X(), X()
print(id(a.l), id(b.l))
a.l.append(1)
print(b.l)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment