mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +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 |