for each loop python code example
Example 1: 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 2: for each loop python 3
# 'foreach' in python is done using 'for'
for val in array:
print(val)
Example 3: foreach loop in python
# Python doesn't have a foreach statement per se.
# It has for loops built into the language.
# As a side note the for element in iterable syntax comes from
# the ABC programming language, one of Python's influences
Example 4: python for loop
nums = ['one', 'two', 'three']
for elem in nums:
print(elem)
Example 5: python for loop
my_list = ["milk", "coffee", "bread"]
# i stands for iterator
for i in my_list:
print(i) # prints every element of my_list