foreach in python 3 code example
Example 1: for each loop python 3
# 'foreach' in python is done using 'for'
for val in array:
print(val)
Example 2: 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