How can i loop through a list in python?
The `for` loop is commonly used to iterate over a list in Python.
Example:
for fruit in fruits:
print(fruit)
This will print each fruit in the `fruits` list.