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

6 lines
63 B
Python
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
val = 1
print val
while val % 6 != 0:
val += 1
print val