Run
tuple1 = (14, 52, 17, 24) index = 0 while index<len(tuple1): print(tuple1[index]) index = index + 1
Output