Pour chaque boucle Python 3
# 'foreach' in python is done using 'for'
for val in array:
print(val)
QuietHumility
# 'foreach' in python is done using 'for'
for val in array:
print(val)
// PHP:
foreach ($array as $val) {
print($val);
}
// C#
foreach (String val in array) {
console.writeline(val);
}
// Python
for val in array:
print(val)
names = ['tom', 'john', 'simon']
namesCapitalized = [capitalize(n) for n in names]
# 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