mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
718b11d482
not use try_top or try_inner try dict nofound and try len is tested ok
11 lines
145 B
Python
11 lines
145 B
Python
res = 0
|
|
try:
|
|
res += 1
|
|
print("before arise")
|
|
len(a)
|
|
print("after arise")
|
|
res += 2
|
|
except:
|
|
print("in excpet")
|
|
res += 4
|