pycharm的断点调试【转自https://blog.csdn.net/weixin_39198406/article/details/78873120】

1. show execution point (F10)
显示目前项目所有断点
2. step over (F8)
下一步但仅限于设置断点的文件
3. step into (F7)
执行下一行
4. step into my code (Alt+Shift+F7)
执行下一行但忽略libraries(导入库的语句)
5. force step into (Alt+Shift+F7)
执行下一行忽略lib和构造对象等
6. step out (Shift+F8)
当单步执行到子函数内时,用step out就可以执行完子函数余下部分,并返回到上一层函数。
7. run to cursor (Alt+F9)
直接跳到下一个断点

原文地址:https://www.cnblogs.com/me1105/p/9901495.html