【Python进阶(二)】——程序调试方法

🍉CSDN小墨&晓末:https://blog.csdn.net/jd1813346972

个人介绍: 研一|统计学|干货分享
         擅长Python、Matlab、R等主流编程软件
         累计十余项国家级比赛奖项,参与研究经费10w、40w级横向

文章目录

  • [1 程序调试基本方法](#1 程序调试基本方法)
    • [1.1 PDB调试](#1.1 PDB调试)
    • [1.2 debug调试](#1.2 debug调试)
  • [2 设置错误信息的显示方式](#2 设置错误信息的显示方式)
    • [2.1 mode Plain](#2.1 mode Plain)
    • [2.2 mode Verbose](#2.2 mode Verbose)
    • [2.3 debug](#2.3 debug)
  • [3 设置断言的方法](#3 设置断言的方法)

【Python进阶(二)】系列------程序调试方法,建议收藏!

该篇文章利用Python演示了程序调试方法,包括程序的基本调试方法里;错误信息显示方式;断言设置方法等内容。

1 程序调试基本方法

1.1 PDB调试

运行程序:

#当python抛出异常或错误信息时,可以用PDB(The Python Debugger,Python调试器)进行程序调试
x=1
x1

运行结果:

Traceback (most recent call last):

  File "<ipython-input-45-ff55524dcc80>", line 2, in <module>
    x1

NameError: name 'x1' is not defined

1.2 debug调试

运行程序:

%debug  #打开PDB方法,退出PDB方法是输入q或quit
#除了PDB,常用的python调试器还有Pylint,Pycheaker

运行结果:

 <ipython-input-45-ff55524dcc80>(2)<module>()
      1 x=1
----> 2 x1

ipdb> x
1
ipdb> q

2 设置错误信息的显示方式

2.1 mode Plain

运行程序:

%xmode Plain
y=1
Y

运行结果:

Exception reporting mode: Plain
Traceback (most recent call last):

  File "<ipython-input-48-e9d491258c9c>", line 3, in <module>
    Y

NameError: name 'Y' is not defined

2.2 mode Verbose

运行程序:

%xmode Verbose
y=1
Y

运行结果:

Exception reporting mode: Verbose
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-49-4e5fe2f91061> in <module>
      1 get_ipython().run_line_magic('xmode', 'Verbose')
      2 y=1
----> 3 Y
        global Y = undefined

NameError: name 'Y' is not defined

2.3 debug

运行程序:

%debug

运行结果:

<ipython-input-49-4e5fe2f91061>(3)<module>()
      1 get_ipython().run_line_magic('xmode', 'Verbose')
      2 y=1
----> 3 Y

ipdb> x
1
ipdb> y
1
ipdb> q

3 设置断言的方法

运行程序:

a=1
b=0
assert b!=0,"分母不能等于0"

运行结果:

AssertionError                            Traceback (most recent call last)
<ipython-input-51-2b94eee22f18> in <module>
      1 a=1
      2 b=0
----> 3 assert b!=0,"分母不能等于0"
        global b = 0

AssertionError: 分母不能等于0

运行程序:

%debug

运行结果:

<ipython-input-51-2b94eee22f18>(3)<module>()
      1 a=1
      2 b=0
----> 3 assert b!=0,"分母不能等于0"

ipdb> a
ipdb> b
ipdb> a
ipdb> quuit
*** NameError: name 'quuit' is not defined
ipdb> quit
相关推荐
尘浮生18 分钟前
Java项目实战II基于微信小程序的南宁周边乡村游平台(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·微信小程序·小程序·maven
wangjing_05222 小时前
C语言练习.if.else语句.strstr
c语言·开发语言
Tony_long74832 小时前
Python学习——字符串操作方法
开发语言·c#
SoraLuna3 小时前
「Mac玩转仓颉内测版26」基础篇6 - 字符类型详解
开发语言·算法·macos·cangjie
出逃日志3 小时前
JS的DOM操作和事件监听综合练习 (具备三种功能的轮播图案例)
开发语言·前端·javascript
前端青山4 小时前
React事件处理机制详解
开发语言·前端·javascript·react.js
雨中rain4 小时前
贪心算法(2)
算法·贪心算法
black0moonlight5 小时前
ISAAC Gym 7. 使用箭头进行数据可视化
开发语言·python
时光の尘5 小时前
C语言菜鸟入门·关键字·int的用法
c语言·开发语言·数据结构·c++·单片机·链表·c
sjsjs115 小时前
【数据结构-表达式解析】【hard】力扣224. 基本计算器
数据结构·算法·leetcode