11-15-2007, 01:43 PM
|
#5 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
|
The third argument to range is for the step. In other words, how much the resulting numbers should differ by. For example, range(1, 20, 3) would result in an array with values 1, 4, 7, 10, 13, 16 and 19.
|
|
|
|