简体   繁体   中英

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:

ps: 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?

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)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM