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
12 lines
187 B
Python
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
|