Can someone let me know if I want to add a recomposed tuple to a list what should be a proper syntax
For example, if I had two lists
>>> a = [(1,2,3),(4,5,6)]
>>> b = [(0,0)]
Then I would expect the following to work
>>> b.append((a[0][0],a[0,2]))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: list indices must be integers, not tuple
Furthermore, when it informs me that indeces must be integers how come I can
>>> b.append((7,7))
>>> b
[(0, 0), (7, 7)]
EDIT: Simple typo... a[0,2] != a[0][2]