mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
9 lines
127 B
Python
9 lines
127 B
Python
def f(c):
|
|
for i in [1, 2, 3]:
|
|
if c:
|
|
x = 0
|
|
break
|
|
else:
|
|
x = 1
|
|
return x #pass
|