mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 22:17:05 +07:00
9 lines
87 B
Python
9 lines
87 B
Python
def foo(x):
|
|
return 1/x
|
|
|
|
def zoo(x):
|
|
res = foo(x)
|
|
return res
|
|
|
|
print(zoo(0))
|