> For the complete documentation index, see [llms.txt](https://m0uk4.gitbook.io/notebooks/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://m0uk4.gitbook.io/notebooks/mouka/python/python-tricks/zhi-jie-bian-liang-zhi-jiao-huan.md).

# 直接变量值交换

```python
a = 23
b = 42

# 普通方法
tmp = a
a = b
b = tmp

# Oops ！
a, b = b, a
```
