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

12 lines
187 B
Python

dict = {"a": 1, "b": 2, "c": 3}
res = 0
try:
res += 1
print("before arise")
print(dict["d"])
print("after arise")
res += 2
except:
print("in excpet")
res += 4