8 lines
150 B
Python
8 lines
150 B
Python
|
current_number = 0
|
||
|
while current_number < 10:
|
||
|
current_number += 1
|
||
|
if current_number % 2 == 0:
|
||
|
continue
|
||
|
|
||
|
print(current_number)
|