a = 5 # a++ WRONG: ++ (or --) is not a reserved operator a += 1 # correct (increment) a -= 1 # correct (decrement)