Python 官方文档:入门教程 => 点击学习
在python中检测函数错误,具体方法如下:x = 0lis_y = [i for i in range(64,90)]def test(x,y):print (x+y)def test1(x,y):print( x*y)try:while
在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')
--结束END--
本文标题: python怎么检测函数错误
本文链接: https://lsjlt.com/news/113524.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0