Photo by GeoJango Maps on Unsplash

Lists are pretty much widely used throughout every project that you can think of. Tuples, on the other hand, are not that common, but both of them have something in common that you can use right away.

You can use the same method for both of them to find indexes of certain elements.

All you have to do is use the index() method.

Let’s see this in action.

Let us take an array of tuples and see this method being used:

You can use the same for lists as well:


That’s basically it for this article.

I hope you find it useful.