W3docs

Python integer incrementing with ++

Python does not have a ++ operator for incrementing integers like some other programming languages.

Python does not have a ++ operator for incrementing integers like some other programming languages. Instead, you can use the += operator to increment an integer variable by a certain amount. For example:

Add a value to an integer in Python

x = 0
x += 1
print(x) # Output: 1

<div class="alert alert-info flex not-prose"> Watch a course <span class="hidden md:block">Watch a video course </span> Python - The Practical Guide</div>

Alternatively, you can use an assignment statement like x = x + 1:

Add a value to an integer in Python by reassignment

x = 0
x = x + 1
print(x) # Output: 1