Introduction
A for loop with index helps you go through a list and know the position of each item at the same time.
When you want to print items with their position number.
When you need to update items based on their position.
When you want to compare an item with its neighbors using their indexes.
When you want to create a numbered list from data.
When you want to track progress through a list.