Now let’s combine the two!
def print_letters(word):
for letter in word:
print letter
print_letters("Hello!")
print_letters("Hello again!")
The function takes an input and splits it up into letters, printing each of them in a row. Try putting other words into the function (make sure to use quotes!) or even write your own function.