Posts by joaofbsm • 101 points
1 post
-
0
votes1
answer130
viewsA: Index of tuples in a list - python
I’m not sure what you want, so please rephrase your question. But if you want to access the third index of tuples in your list of tuples, you can do so directly: for i in range(len(list1)): x =…