Result Size:
625 x 571
demo_while.py:
i = 1 while i < 6: print(i) i += 1
x
i
=
1
while
i
<
6
:
print
(
i
)
i
+=
1
C:\Users\My Name>python demo_while.py
1
2
3
4
5