# There is no ++ in Python, use instead: number += 1
i += 1
# ++ in python my_variable = 1 my_variable += 1 print(my_variable) >> 2