Python允许您在一行中为多个变量赋值:例x, y, z = "Orange", "Banana", "Cherry"print(x)print(y)print(z)注意:确保变量数与值数匹配,否则将报错。