冷傲小伙

文章
6
资源
0
加入时间
2年10月17天

python 学习汇总33:异常Exception error( tcy)

异常 1.捕捉异常(except访问异常对象本身使用1个元祖1个参数)try:x ,y= 10,0print (x / y )except: #捕捉所有异常,不建议这样使用print( "Something wrong happened...")except Exception: #捕捉Exception类异常print ("Exception err!" )exc...