I am trying to find a way to control the amount my variable 'i' increments by so I decided to include the code 'i = i + 1' within the for loop. My idea was that as my loop would run, it would print the 'i' values '1, 3, 5, 7'. However, when I ran the code, it printed out (1, 2, 3, 4, 5, 6, 7). I am confused as to why this is happening.
for i in range (0, 7):
i = i + 1
print i