Elenco iterate python con indice e valore

Esempi di codice

3
0

come loop la lunghezza di un array pytoh

array = range(10)
for i in range(len(array)):
  print(array[i])
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

come iterare su un elenco in python con index

# Create the list
my_list = [1, 2, 3]

# Python automatically creates an index for you and increments it for you
for index in range(len(my_list)):
  print(my_list[index])
0
0

python itera con indice

for index, item in enumerate(iterable, start=1):
   print index, item

In altre lingue

Questa pagina è in altre lingue

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