How to check a value in list and finding indices of values in Python
Before going to original section first learn about python methods Enumerate():
Using Enumerate we can easily print index with value in python. This is python built-in method.
Enumerate() method adds a counter to an iterable and returns it in a form of enumerate object.
Now check a value in list and finding indices of value examples