Python's loops are designed to iterate over iterables (collections) directly, rather than manipulating index counters — making them clean and readable. The two loop types are for and while.
The for loop — iterate over items directly
fruit [, , ]:
(fruit)
fruits = [, ]
i ((fruits)):
(fruits[i])
