mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 13:14:18 +07:00
10 lines
142 B
Python
10 lines
142 B
Python
def foo(num):
|
|
if (
|
|
bar(num)
|
|
):
|
|
return 1
|
|
|
|
|
|
def bar(num_new):
|
|
return (num_new >= 0
|
|
and num_new <= 9) |