提取元组的元素,并将其赋值给变量,就是解包元组:fruits = ("apple", "banana", "cherry")(x, y, z) = fruitsprint(x)print(y)print(z)执行结果:applebananacherry