Skip to content

Instantly share code, notes, and snippets.

@steeve
Created March 29, 2012 12:25
Show Gist options
  • Save steeve/2236890 to your computer and use it in GitHub Desktop.
Save steeve/2236890 to your computer and use it in GitHub Desktop.
>>> l = [1, 2]
>>> id(l)
4299501792
>>> l += [3]
>>> l
[1, 2, 3]
>>> id(l)
4299501792
>>>
>>> t = (1, 2)
>>> id(t)
4299554112
>>> t += (3, )
>>> id(t)
4299592240
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment