Post

@PythonPr Answer: world
No trap here. Just read it:
› n=20, condition checks n==15
› 20 == 15 is False
› else runs and prints "world".
For beginners: if/else is a coin flip.
Condition true = if block.
Condition false = else block.
English
Post
