I've been learning Python but I come from a background of Java and in Java, you can set the value that the iterator increases or decreases in each run through the loop. For example, you can say for(int i = 0; i < 10; i = i + 2)
so that the iterator increases by two each time.
From what I've seen so far in Python tutorials, the for loop is unchanging and iterates through each integer from a beginning value to an end value, increasing by one each time. Is there a way to manipulate the Python for loop to set your own increase/decrease value for the iterator?