mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
8 lines
118 B
Python
8 lines
118 B
Python
def foo(num):
|
|
if bar(num):
|
|
return 1
|
|
|
|
|
|
def bar(num_new):
|
|
return num_new >= 0 \
|
|
and num_new <= 9 |