Tuple packing and unpacking
>>> x, y = (‘apples’, ‘oranges’)
>>> x
‘apples’
>>> x, y = y, x    # exchanging values
>>> x
‘oranges’
>>> a, (b, c) = 1, (‘pear’, {“key”:3})
>>> c
{‘key’:3}