This rule raises an issue when a pre/post increment or decrement operator is used.
Python has no pre/post increment/decrement operator. For instance, x++ and x-- will fail to parse. More importantly,
++x and --x will do nothing. To increment a number, simply write x += 1.
++x # Noncompliant: pre and post increment operators do not exist in Python. x-- # Noncompliant: pre and post decrement operators do not exist in Python.
x += 1 x -= 1