🌈 搜索
📅  最后修改于: 2022-03-11 14:45:06.583000             🧑  作者: Mango
# Python shorthand for swapping x,y=5,2 print(x,y) x,y=y,x print(x,y)