try跟expect:当开始一个try语句后,python就在当前程序的上下文中作标记,这样当异常出现时就可以回到这里,try子句先执行,接下来会发生什么依赖于执行时是否出现异常。
1 try: 2 a = 1 /0 3 print a 4 except: 5 print ‘i get the error‘
标签:一个 标记 nbsp 记录 class 出现 上下文 print log
try跟expect:当开始一个try语句后,python就在当前程序的上下文中作标记,这样当异常出现时就可以回到这里,try子句先执行,接下来会发生什么依赖于执行时是否出现异常。
1 try: 2 a = 1 /0 3 print a 4 except: 5 print ‘i get the error‘
标签:一个 标记 nbsp 记录 class 出现 上下文 print log
原文地址:https://www.cnblogs.com/mayunji/p/8503581.html