19 lines
291 B
Python
19 lines
291 B
Python
from tests.test_utils import *
|
|
|
|
|
|
def test():
|
|
|
|
@Commentor()
|
|
def target():
|
|
# return only odd numbers - 1,3,5,7,9
|
|
for x in range(10):
|
|
# Check if x is even
|
|
if x % 2 == 0:
|
|
continue
|
|
print(x)
|
|
|
|
print(target())
|
|
|
|
|
|
test()
|