pikastech 718b11d482 support try except in cmodule
not use try_top or try_inner

try dict nofound and try len is tested ok
2022-08-30 15:37:09 +08:00

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