If/Else Statements
When reasonable, multiple if statements should be joined into an if-elif-else chain. For example, the following code:
if x < 2:
foo()
if x > 10:
bar()
if 2 <= x <= 10:
oh()
should be
if x < 2:
foo()
elif x > 10:
bar()
else:
oh()
2-point error: not joining-up multiple ifs where appropriate.