1fruits = ["Apple","Orange","Watermelon","cherry"]
2for fruit in fruits:
3 print(fruit)
1# list having all elements are strings
2strings = ['string1', 'string2', 'string3', 'string4']
3for string in strings:
4 print(string)
1# using for loop
2scores = [11, 12, 13, 14, 15, 16]
3for score in scores:
4 print(score)