pytojon foreach code example
Example 1: python foresch
for pet in pets:
print pet
Example 2: for each loop python 3
# 'foreach' in python is done using 'for'
for val in array:
print(val)
for pet in pets:
print pet
# 'foreach' in python is done using 'for'
for val in array:
print(val)