- Python Data Types and Math Operations
- Numbers 4 questions
- Booleans 7:51
- Logic 4 questions
- If, Else and Elif 11:12
- Use an if 1 objective
- Functions 11:37
- Reviewing Functions 3 questions
- Expecting Exceptions 7:15
- Exception Flow 2 questions
- While Loops 9:32
- Manners 2 questions
- The Random Library
- The Number Guessing Game
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: