News

# x = x + 3 is a code to increment x by 3 x += 3 # += is an augmented assignment operator to increment x by 3 # we can also use -=, *=, /=, //=, **=, %=, etc.