The `enumerate()` function in Python is a built-in function used to add a counter to an iterable, such as a list or a tuple. It returns an enumerate object that contains pairs of an index and the corresponding item from the iterable. This is particularly useful when you need both the index and the value from a sequence in a loop.
### Syntax
```python
enumerate(iterable, start=0)
```
- `iterable`: The collection (like a list or tuple) that you