for number in range(20):
if number % 3 == 0:
print(number)
for fruit in ["banana", "apple", "quince"]:
print("I like to eat " + fruit + "s!")
# This is one of the most commonly used combinations in Python
friends = ['Sam', 'John', 'Anne']
for friend in friends:
print('Happy New Year, my friend', friend + '!')
print('Done')