# For loop in Python
fruits = ["apple", "banana", "cherry"]

for fruit in fruits:
    print("I like", fruit)
