# 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')