Owl Embedded Python for 32-bit Microcontrollers
The _tuple modules defines the object methods for all tuples. It shouldn’t be used directly. Instead, these methods should be called directly on a tuple object:
>>> a = (1, 2)
>>> print a.index(2)
1
Finds the first element of l equal to o. If no elements are equal to o, return -1.