縮排錯誤
間距應該是均勻和均勻的。不正確的縮排可能導致 IndentationError
或導致程式執行意外操作。以下示例引發了一個 IndentationError
:
a = 7
if a > 5:
print "foo"
else:
print "bar"
print "done"
或者如果冒號後面的行沒有縮排,也會引發 IndentationError
:
if True:
print "true"
如果在不屬於的地方新增縮排,則會引發 IndentationError
:
if True:
a = 6
b = 5
如果忘記取消縮排功能可能會丟失。在這個示例中,返回 None
而不是預期的 False
:
def isEven(a):
if a%2 ==0:
return True
#this next line should be even with the if
return False
print isEven(7)