RosettaCodeData/Task/Loops-Do-while/Python/loops-do-while-2.py

6 lines
63 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
val = 1
print val
while val % 6 != 0:
val += 1
print val