mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
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
|