|
The arguments in range are (start, end, increment). The first argument is the starting number, the second is the number after the ending number, the third is the increment.
So (0, 526, 15) will go from 0 to 525 in increments of 15. range(4500, 526, 15) won't do anything, since the end (526) is less than the start(4500).
|