Python
Exiting Function Earlier
Nested "if"s conditions can be eliminated by exiting from a function early, which makes the program become easier to understand.
Reducing Function Size
Big functions should be refactored into multiple & smaller functions to make the program easier to understand, less bugs, and higher in testability.