loop statement in python code example
Example 1: python for loop
# defining initial variables
num1 = 1
num2 = 10
# Using range() for the looping
for i in range(num1, num2):
# printing iterated variable
print(i)
# Using for loop to print data in dictionary
varname = [1,2,3,4]
for x in varname:
print(a)
# printing double lists with help of zip
lz1 = ["a", "b", "c"]
lz2 = [1, 2, 3]
#print two list with the help of zip function
for y,z in zip(lz1,lz2):
print(y,z)
Example 2: how do i make a for loop in python
for i in range(0, 10):
#do stuff
pass
Example 3: how to make a loop in python
x = 0
while True: #execute forever
x = x + 1
print(x)