1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
>>> the_tuple = ('one', 'two') >>> 'one' in the_tuple True >>> 'three' in the_tuple False >>> the_tuple[0] 'one' >>> the_tuple[1] 'two' >>> o, t = the_tuple >>> o 'one' >>> t 'two' >>>