# Combine ideas from the whole course
houses = ["Gryffindor", "Hufflepuff", "Ravenclaw", "Slytherin"]

def cheer(house_name):
    return "Ten points to " + house_name + "!"

for h in houses:
    print(cheer(h))

# You are ready for files, classes, web apps, data science, and more!
