Per indice di ciclo e valore python

Esempi di codice

23
0

python3 itera attraverso gli indici

items=['baseball','basketball','football']
for index, item in enumerate(items):
    print(index, item)
15
0

indice di accesso python in ciclo for

for index, item in enumerate(items):
    print(index, item)

#if you want to start from 1 instead of 0
for count, item in enumerate(items, start=1):
    print(count, item)
0
0

python per l'indice del ciclo

# Creates two variables; An index (num), and the value at that index (line)
for num, line in enumerate(lines):
    print("{0:03d}: {}".format(num, line))
0
0

per ciclo con indice python

presidents = ["Washington", "Adams", "Jefferson", "Madison", "Monroe", "Adams", "Jackson"]
for i in range(len(presidents)):
    print("President {}: {}".format(i + 1, presidents[i]))

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
English
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................