L1/10

Fixing Exact Output Bugs

Good debugging starts by comparing actual output to expected output carefully.

python
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:

text
All tests passed

Be very careful with capitalization, spaces, and line breaks. The output must match exactly.