> Bugs don't hide in variable names or white space.
Bugs do hide in variable names and whitespace.
thisIsALongVariableName = True
thisIsaLongVariableName = True
is easy to spot when they're side-by-side, but not so much when they're two pages away from each other. Python's tabs and spaces can confuse the indention in cases so that code that "looks" aligned actually isn't.
If you haven't run into a problem caused by a typo, you haven't been programming long enough.