user15874067
user15874067

Reputation: 81

Iterate over elements in tuple (Python)

I am new in programming, and for practice reasons, I trying to iterate over elements in a tuple and after give to each different element an index.

I have a problem iterating over tuples, here is my code:

p.s: I use enumerate in order to keep an index for each tuple.

myList = [(5, 7, 24), (0, 6, 10), (0, 3, 24), (1, 3, 100), (7, 10, 15)]
for tup in myList:
    for x, y, z in enumerate (tup):
        print(x, y, z)

But i get the this error:

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-72-cfb75f94c0bb> in <module>
     17 myList = [(5, 7, 24), (0, 6, 10), (0, 3, 24), (1, 3, 100), (7, 10, 15)]
     18 for tup in myList:
---> 19     for x, y, z in enumerate (tup):
     20         print(x, y, z)

ValueError: not enough values to unpack (expected 3, got 2)

I gave 3 elements to unpack and I got anyway that error. Which is the correct way to unpack tuples of 3 elements?

Upvotes: 6

Views: 12209

Answers (1)

Code-Apprentice
Code-Apprentice

Reputation: 83527

I gave 3 elements to unpack and I got anyway that error. Which is the correct way to unpack tuples of 3 elements?

The problem is that the for loop is basically unpacking the tuple for you already. For example:

myList = [(5, 7, 24), (0, 6, 10), (0, 3, 24), (1, 3, 100), (7, 10, 15)]
for tup in myList:
    for x in tup:
        print(x)

To use enumerate() correctly, you need to unpack the two elements that are returned from it:

myList = [(5, 7, 24), (0, 6, 10), (0, 3, 24), (1, 3, 100), (7, 10, 15)]
for tup in myList:
    for i, x in enumerate(tup):
        print(i, x)

If instead, you want the index of each tuple in the parent list, you need to enumarate(myList) in the outer loop:

for i, (x, y, z) in enumerate(myList):
    print(i, x, y, z)

Upvotes: 10

Related Questions