Result Size: 625 x 571
demo_indentation2.py:
x
 
if 5 > 2:
 print("Five is greater than two!")  
if 5 > 2:
        print("Five is greater than two!") 
C:\Users\My Name>python demo_indentation2.py
Five is greater than two!
Five is greater than two!