My QA Projects
QA Projects I was involded.
View on GitHub
Iteration - While Loops
Syntax
while
boolean_exp
:
codeblock
While example
i
=
0
while
i
<
3
:
Print
(
'hello'
)
i
=
i
+
1
print
(
'done'
)