increment for loop by 3 python code example
Example 1: python for loop increment
#you can specify incremental values for for loops in python too!
for x in range(1,10,2):
doSomething(x)
Example 2: python increment by 1
#a = a + 1
a += 1
#you can specify incremental values for for loops in python too!
for x in range(1,10,2):
doSomething(x)
#a = a + 1
a += 1