Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 81 Bytes

交换变量.md

File metadata and controls

16 lines (12 loc) · 81 Bytes
>>> a ,b = 1, 2
>>> a
1
>>> b
2


>>> a, b = b, a
>>> a
2
>>> b
1