Curso_Intensivo_de_PYTHON/chapter_07/counting.py
2023-06-02 17:22:53 +02:00

7 lines
150 B
Python

current_number = 0
while current_number < 10:
current_number += 1
if current_number % 2 == 0:
continue
print(current_number)