fruits = ("apple", "banana", "orange", "kiwi") index = 0 while index < len(fruits): print(fruits[index]) index += 1