fruits = ["Apple","Orange","Watermelon","cherry"]
for fruit in fruits:
print(fruit)
# using for loop
scores = [11, 12, 13, 14, 15, 16]
for score in scores:
print(score)
fruits = ["Apple","Orange","Watermelon","cherry"]
for fruit in fruits:
print(fruit)
# using for loop
scores = [11, 12, 13, 14, 15, 16]
for score in scores:
print(score)