I understand that this would make i increment from 1 to 10. What I don’t know is how I could run this from a range instead. For example, instead of just going from 1 to 10, it starts at 2, then it goes to 10.
So my question is: How would I be able to use a numeric for loop to run through a range of numbers, instead of just from 1 to whatever the second value is?
Change the 1 to a 2. The first number is the starting number and the second is the end point. You can also add an optional third number which is the increment amount.