python怎么检测函数错误 python如何检查错误

主机教程 建站分享 2年前 (2022-11-12) 151次浏览

文章摘要:python怎么检测函数错误 python如何检查错误

在python中检测函数错误,具体方法如下: x = 0 lis_y = [i for i in range( […]

在python中检测函数错误,具体方法如下:

x = 0

lis_y = [i for i in range(64,90)]

def test(x,y):

print (x+y)

def test1(x,y):

print( x*y)

try:

while x < 20:

for y in lis_y:

test(x,y)

test1(x,chr(y))

x+=1

except:

print ('Error')


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么检测函数错误 python如何检查错误
文章链接:http://www.7966.org/post/14149.html
转载请注明出处

喜欢 (0)