Curso_Intensivo_de_PYTHON/chapter_07/counting.py

8 lines
150 B
Python
Raw Permalink Normal View History

2023-06-02 17:22:53 +02:00
current_number = 0
while current_number < 10:
current_number += 1
if current_number % 2 == 0:
continue
print(current_number)