元组元组解包 元组 与列表类似,但是元组是不可变的 元组解包>>> tuple1 = ('one', 'two', 'three')>>> a, b, c = tuple1>>> a'one'>>> b'two'>>> c'three'