缩进错误

间距应该是均匀和均匀的。不正确的缩进可能导致 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)