1 web-api answered Aug 8 '21 00:00 you can use += in Python this is how you can use += i=10 i+=1 print(i) i+=1 means i=i+1i+=2 means i=i+2 Edit Answer