Post

@PythonPr Answer: world
Solution: n is initialized to the value 20.
Then, there is an if-statement with an equality check condition.
It compares n with 15. Since n is 20, the condition is False.
Therefore the else-block is executed.
That prints world.
English

