1There is no Increment Decrement Operator in Python
2Use Assignment Operators
3
4i += 1
5i -= 1
1n = 12 # 'n' is a number
2n += 1 # '+=' means that 'n' is equal the old 'n' + the number on the right. the number on the right can be any number
3print(n)