Python允许将列表中的值提取到变量中。这称为解压缩(解包)。例:解压缩列表:fruits = ["apple", "banana", "cherry"]x, y, z = fruitsprint(x)print(y)print(z)