Don’t check for empty containers or sequences (like [] or ‘’)
by comparing the length to zero (if len(somelist) == 0). Use
if not expression
Avoid single-line if statements, for and while loops, and except
compound statements. Spread these over multiple lines for
clarity or consider combing them in one line
