Pacific Beach Drive
Mike's Drive.
Follow me on
GitHub
Iteration - While Loops
Syntax
while
boolean_exp
:
codeblock
While example
i
=
0
while
i
<
3
:
Print
(
'hello'
)
i
=
i
+
1
print
(
'done'
)