mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
8 lines
112 B
Python
8 lines
112 B
Python
def test(a, b=1):
|
|
if a:
|
|
print(a)
|
|
else:
|
|
for n in range(10):
|
|
|
|
<caret> print(b)
|