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 simply type the text then press enter after typing. When I type an enter after "else:" I get the error. "Else" is highlighted by the interpreter. What's wrong?
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48)
[MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> if 3 > 0:
print("3 greater than 0")
else:
SyntaxError: invalid syntax
>>>
Python does not allow empty blocks, unlike many other languages (since it doesn't use braces to indicate a block). The
pass
keyword must be used any time you want to have an empty block (including in if/else statements and methods).For example,
Or an empty method:
The problem is indent only.
You are using IDLE. When you press enter after first print statement indent of else is same as print by default, which is not OK. You need to go to start of else sentence and press back once. Check in attached image what I mean.
That's because your
else
part is empty and also not properly indented with theif
.In python
pass
is equivalent to{}
used in other languages like C.The
else
block needs to be at the same indent level as theif
:it is a obvious mistake we do, when we press enter after the if statement it will come into that intendation,try by keeping the else statement as straight with the if statement.it is a common typographical error
The keyword
else
has to be indented with respect to theif
statement respectivelye.g.