Run
list_1 = ['apple', 'banana', 'cherry'] index = 0 while index < len(list_1): print(list_1[index]) index += 1
Output