Quiz Question 1 of 3
What would the output of this script look like?
def display_blanks( word):
blanks = "-" * len(word)
print(blanks)
print("Puzzle 1:")
display_blanks("treehouse")
print("Puzzle 2:")
display_blanks( "python")
Choose the correct answer below: