Can someone explain why I am getting an invalid syntax error from Python\'s interpretor while formulating this simple if...else statement? I don\'t add any tabs myself I sim
The else block needs to be at the same indent level as the if:
else
if
if 3 > 0: print('3 greater then 0') else: print('3 less than or equal to 0')