mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
160 B
Python
16 lines
160 B
Python
def foo(x):
|
|
t = [0, 1]
|
|
try:
|
|
print(t[2])
|
|
except:
|
|
pass
|
|
return 1 / x
|
|
|
|
|
|
def zoo(x):
|
|
res = foo(x)
|
|
return res
|
|
|
|
|
|
print(zoo(0))
|