Fix the indentation
Created on Jan. 14, 2022 by Julien Palard
In the given snippet, there's a bug: there's no indentation.
Your goal is to fix it (by just adding 4 spaces at the right place).
The code should display:
1 2 3 4 5  |  | 
What's indentation?
As you may have guessed by reading the actual code, after the for
line asking Python to repeat three times, Python can't guess what
should be repeated: should Python only repeat print("*knock*") or
should Python print the two following print?
To indicate this in Python we do use 4 spaces in front of the lines, like this:
1 2  |  | 
which will display:
1 2 3 4 5  |  | 
            There's no corrections yet, hit the `Submit` button to send your code to the correction bot.
          
          
            Keyboard shortcuts:
            
        
      
    - Ctrl-Enter: Send your code to the correction bot.
 - Escape: Get back to the instructions tab.