“Boucle foreach en python” Réponses codées

Pour chaque boucle Python 3

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

py foreach

// PHP:
foreach ($array as $val) {
    print($val);
}

// C#
foreach (String val in array) {
    console.writeline(val);
}

// Python
for val in array:
    print(val)
Crazy Copperhead

py foreach

names = ['tom', 'john', 'simon']

namesCapitalized = [capitalize(n) for n in names]
Crazy Copperhead

Boucle foreach en 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
mrhm.dev

Réponses similaires à “Boucle foreach en python”

Questions similaires à “Boucle foreach en python”

Plus de réponses similaires à “Boucle foreach en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code