My QA Projects

QA Projects I was involded.

View on GitHub

Iteration For Loops

Syntax

for item in iterable:
    codeblock

for variable in iterable:
    codeblock

For Loop Example

mylist = ['a','b','c']
for ch in mylist:
    print(ch)

  back