mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
13 lines
160 B
Python
13 lines
160 B
Python
|
|
|
|
while True:
|
|
print("before try")
|
|
try:
|
|
print("after try")
|
|
while True:
|
|
raise
|
|
except:
|
|
break
|
|
|
|
print("after while")
|