The interpreter gives you a line after blocks to leave blank for the interpreter to know your block is over (or to put an else
, etc.). Putting something there makes it freak out. Just leave it that line blank and wait for the next >>>
before your print('done')
.
>>> n = 5
>>> if n == 4:
... print('n=4')
...
>>> print('done')
done