标签: python swap cpython
我知道我们可以在Python中执行像a,b = b,a这样的交换操作。有谁知道它是如何实现的?如果你能从Cpython提供它的实现,那将是很棒的。谢谢!
a,b = b,a