“Index in Zip -Python” Code-Antworten

Aufzählende Zip -Python

alist = ['a1', 'a2', 'a3']
blist = ['b1', 'b2', 'b3']

for i, (a, b) in enumerate(zip(alist, blist)):
    print i, a, b
Bored Coder

Index in Zip -Python

for index, (value1, value2) in enumerate(zip(data1, data2)):
    print(index, value1 + value2)  # for Python 2 use: `print index, value1 + value2` (no braces)
coder

Aufzählen Sie gegen Zip Python gleichzeitig

alist = ['a1', 'a2', 'a3']
blist = ['b1', 'b2', 'b3']

for i, (a, b) in enumerate(zip(alist, blist)):
    print i, a, b
Merwanski

Ähnliche Antworten wie “Index in Zip -Python”

Fragen ähnlich wie “Index in Zip -Python”

Weitere verwandte Antworten zu “Index in Zip -Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen