This removes the default first parameter of zero from Python range functions when it's not needed.
https://docs.python.org/3.5/library/stdtypes.html#range
The majority of the codebase uses the range without the zero as the first parameter.
I used a regex in PyCharm to just search through Python files for the range functions that I changed in this PR. Regex was -> range *\( *0
The only other results are the range functions that use all three parameters, start - stop - step.