1) If you "print(i)" you print everything from 0 to "end-1"
2) If you want to start with "start" you'll need to increment using the "+=" operator
3) It's not entirely clear what you mean by "selected value", is it "end"?
How will you make sure that if you increment "start" with "step" that it will come out
exacly on "end". (Or bigger than ?)...
(Unless you are looking to implement the parameters in the for loop (start, end, step),
then you'll need another approach.)
Paul
2) If you want to start with "start" you'll need to increment using the "+=" operator
3) It's not entirely clear what you mean by "selected value", is it "end"?
How will you make sure that if you increment "start" with "step" that it will come out
exacly on "end". (Or bigger than ?)...
(Unless you are looking to implement the parameters in the for loop (start, end, step),
then you'll need another approach.)
Paul