【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
相关推荐
sun_weitao2 小时前
Django自带admin管理系统使用
数据库·python·django
指尖动听知识库2 小时前
华为2024嵌入式研发面试题
数据结构·算法·华为
RuiyChen2 小时前
当comfyui-reactor-node 安装失败urllib.error.HTTPError: HTTP Error 403: Forbidden解决方法
图像处理·python
Jamesvalley3 小时前
【Debug】django.db.utils.OperationalError: (1040, ‘Too many connections‘)
数据库·python·django
Q_27437851093 小时前
django基于Python的智能停车管理系统
java·数据库·python·django
m0_675988234 小时前
Leetcode2270:分割数组的方案数
数据结构·算法·leetcode·python3
太阳花的小绿豆4 小时前
Python使用socket实现简易的http服务
python·socket
大风起兮124 小时前
ESP32,uart安装驱动uart_driver_install函数剖析,以及intr_alloc_flags 参数的意义
开发语言·单片机·嵌入式硬件
不是AI4 小时前
【C语言】【C++】Curl库的安装
c语言·开发语言·c++
视觉弘毅4 小时前
win10安装anaconda环境与opencv
python·opencv·anaconda