# 技巧

## 调试

在 Python 任意一行加入如下代码，便可以调试代码：

```python
from IPython import embed; embed()
```
