pythron for loops code example
Example 1: python for loop
for item in ['mosh','john','sarah']:
print(item)
Example 2: pyton for
for x in range(6):
print(x)
for item in ['mosh','john','sarah']:
print(item)
for x in range(6):
print(x)