Sorry in advance, but I\'m new to Python. I have a list of tuples, and I was wondering how I can reference, say, the first element of each tuple w
tuples
tuple
Rather than:
first_element = myList[i[0]]
You probably want:
first_element = myList[i][0]