First page Back Continue Last page Overview Graphics

Tuple packing und unpacking

>>> date = 31,12,2008

>>> date

(31, 12, 2008)

>>> (day,month,year) = date

>>> day

31

>>> month

12

>>> year

2008

packing

short for (31,12,2008)

unpacking

This can be used to swap two variables:

>>> x, y = 47, 11

>>> x, y = y, x