i = 0
while i <= 10:
print(i)
i++
i = 0
while i <= 10:
print(i)
i += 1
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.