Also [:] returns a reference to the existing tuple instead of a copy:
>>> a = (1, 2, 3) >>> id(a) 3081276268L >>> id(a[:]) 3081276268L
Also [:] returns a reference to the existing tuple instead of a copy: