Python integer incrementing with ++ [duplicate]

Python doesn’t support ++, but you can do:

number += 1

Leave a Comment