什么是bugbug定义 程序中出现的错误,但又没有通过异常去捕获,以至于直接抛出,导致程序的崩溃 bug一词的由来 bug指的是 小虫 飞入计算机中导致机器停止 代码123456789101112131415161718192021# coding:utf-8print('test1')a = 1print(a)print('test2')b = 2print(b)print('test3')c = 3print(c)print('test4')d = 4print(d)print('test5')def test1(): print(5)test1()