Home / Python Statement / How to Short Hand If Statement in Python In this example we will show how to short hand if statement in Python. Source Code x = 20 y = 8 if x > y: print('x is greater than y') Output: x is greater than y