python loop 3 times code example
Example 1: python loop certain number of times
# To loop n times, use loop over range(n)
for i in range(n):
# Do something
Example 2: for in python
# how to use for in python for (range, lists)
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
if x == "apple":
continue
if x == "banana":
break
print(x)
# fron 2 to 30 by 3 step
for x in range(2, 30, 3):
print(x)
Example 3: how to run loops 3 times in python
number1 = 0
number2 = 0
number3 = 0
for i in (number1, number2, number3):
i = int(input("Enter number: "))