11python bug以及debug

文章目录


前言

这篇文章终于实现了之前好久想要写出来的格式但是却没有写的小心愿


11python bug以及debug


提示:以下是本篇文章正文内容,下面案例可供参考

一、Bug的由来以及分类

1、bug的由来

11python bug以及debug

2、bug的分类以及解决方案

粗心导致的语法错误

11python bug以及debug
11python bug以及debug

自查宝典

1
11python bug以及debug
2
11python bug以及debug

知识点不熟练导致的错误

11python bug以及debug
append这个方法每次只能添加一个元素

lst=[]
lst.append('a')
print(lst)
['a']

所以这种情况就会报错
11python bug以及debug
那么在一个列表中添加多个元素的话

编译区

lst=[]
lst.append('我')
lst.append('是')
lst.append('小')
lst.append('贾')
lst.append('吖')

print(lst)

输出结果

['我', '是', '小', '贾', '吖']

思路不清导致的问题解决方案

11python bug以及debug
11python bug以及debug
11python bug以及debug

截图来自视频教程

二、python的异常处理机制

“被动掉坑”

1、这种try到底是什么? 2、为什么这样就实现了功能? 3、什么逻辑关系?

11python bug以及debug
解决方案
11python bug以及debug

try:
    a=int(input('请输入第一个整数'))
    b=int(input('请输入第二个整数'))
    result=a/b
    print('结果为:',result)
except ZeroDivisionError:
    print('对不起,除数不允许为零')
print('程序结束')
请输入第一个整数1
请输入第二个整数0
对不起,除数不允许为零
程序结束

python的异常处理机制1

11python bug以及debug

try:
    a=int(input('请输入第一个整数'))
    b=int(input('请输入第二个整数'))
    result=a/b
    print('结果为:',result)
except ZeroDivisionError:
    print('对不起,除数不允许为零')
except ValueError:
    print('只能输入数字串')
print('程序结束')
请输入第一个整数的
只能输入数字串
程序结束

python的异常处理机制2

11python bug以及debug

python的异常处理机制3

11python bug以及debug

常见类型

11python bug以及debug

三、traceback模块

11python bug以及debug
11python bug以及debug

四、PyCharm开发环境的调试

11python bug以及debug

总结

11python bug以及debug

上一篇:python工程助手开发-目标


下一篇:1.8 java基础 方法与DeBug