python increment variable syntax code example
Example 1: int + 1 int python
n = 12 # 'n' is a number
n += 1 # '+=' means that 'n' is equal the old 'n' + the number on the right. the number on the right can be any number
print(n)
Example 2: python increment
# A Sample Python program to show loop (unlike many
# other languages, it doesn't use ++)
# this is for increment operator here start = 1,
# stop = 5 and step = 1(by default)
print("INCREMENTED FOR LOOP")
for i in range(0, 5):
print(i)
# this is for increment operator here start = 5,
# stop = -1 and step = -1
print("\n DECREMENTED FOR LOOP")
for i in range(4, -1, -1):
print(i)