Fixing Exact Output Bugs
Good debugging starts by comparing actual output to expected output carefully.
print("Mission complete")Here is what the example does:
print('Mission complete')displays the text "Mission complete".
The assignment changes the specific values, but the basic pattern is the same.
Assignment
Complete the starter code so the program does the following:
- Print the exact text
'All tests passed'.
Your finished program should print exactly this output:
All tests passedBe very careful with capitalization, spaces, and line breaks. The output must match exactly.