mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-02-05 17:28:23 +08:00
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
|