loops python 3 code example
Example 1: pytho loops
for x in loop:
print(x)
Example 2: for loop example python 3
for num in nums:
for letter in 'abs':
print(num, letter)
Example 3: python for loop
//x starts at 1 and goes up to 5 increasing by 2
for x in range(1,5,2):
print(x)