You are almost on the line. This is how you do it on a list: -
your_list = [1, 2, 3]
for eachItem in your_list:
print eachItem
If you want to iterate over a certain range: -
for i in xrange(10):
print i
To give a step value you can use a third parameter, so in your case it would be: -
for i in xrange(2 * CONST, 1):
print i
But you can only give an integer
value as step value.
If you want to use float
increment, you would have to modify your range a little bit:-
for i in xrange(200 * CONST):
print i / 100.0