Skip to content

Instantly share code, notes, and snippets.

@mdeous
Last active August 21, 2017 12:53
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 mdeous/a5c04d4f22049f7c00babbf3ec4d253d to your computer and use it in GitHub Desktop.
Save mdeous/a5c04d4f22049f7c00babbf3ec4d253d to your computer and use it in GitHub Desktop.
>>> l = []
>>> l.append(l)
>>> l.append("foo")
>>> print(l)
[[...], 'foo']
>>> print(l[0])
[[...], 'foo']
>>> print(l[0][0])
[[...], 'foo']
>>> print(l[0][0][0])
[[...], 'foo']
>>> del l
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment