pylint-errors

E0107 (nonexistent-operator)

:x: Problematic code:

i = 0

while i <= 10:
    print(i)
    i++

:heavy_check_mark: Correct code:

i = 0

while i <= 10:
    print(i)
    i += 1

Rationale:

Used when you attempt to use the C-style pre-increment or pre-decrement operator -- and ++, which doesn’t exist in Python. This message belongs to the basic checker.