python中请问如何快速将三个变量的值互相交换?python交换两个变量的值很简单,a,b = b,a 就可以,写成函数,代码如下: def jh(a,b): return b,a x = 1 y = 2 x,y = jh(x,y) print(x,y)