python foreach loop code example

Example 1: python foresch

for pet in pets:
    print pet

Example 2: pytho loops

for x in loop:
	print(x)

Example 3: python for loop

#to print number from 1 to 10
for i in range(1,11):
    print(i)

#to print a list
l = [1,2,3,4]
for i in l:
    print(i)

r = ["a","b","c","d","e"]
s = [1,2,3,4,5]

#print two list with the help of zip function
for p,q in zip(r,s):
    print(p,q)

Example 4: for loop in python

for x in range(6):

	 
	print(x)

Example 5: for loops

MyString = ""
for i in range(5):
  MyString += "hi"
print(MyString)

Example 6: for each loop python 3

# 'foreach' in python is done using 'for'
for val in array:
    print(val)

Tags:

C Example