How do I make a for loop or a list comprehension so that every iteration gives me two elements?
l = [1,2,3,4,5,6]
for i,k in ???:
print str(i), '+', str(k), '=', str(i+k)
Output:
1+2=3
3+4=7
5+6=11
Thanks.
|
|
You need a
Or, more generally:
In Python 3+, you can just use the All credit to martineau for his answer to my question, I have found this to be very efficient as it only iterates once over the list and does not create any unnecessary lists in the process. N.B: This should not be confused with the |
|||||||||||||||||||
|
|
Well you need tuple of 2 elements, so
Where:
|
||||
|
|
|
|||
|
|
|
A simple solution.
l = [1, 2, 3, 4, 5, 6]
for i in range(0, len(l), 2):
print str(l[i]), '+', str(l[i + 1]), '=', str(l[i] + l[i + 1])
|
|||
|
|
|||
|
|