RulesOfThumb


Variables:

 

use variables whose name-length is proportional to the size of their scope: the longer the scope, the longer the name (more detailed).

 

But don't use single-char names (they are hard to find/replace later if you need to): use "for ii in range(10)" for loop where you don't care about the variable, but name it if you plan to use it.