samedi 20 août 2022

(READ COMMENTS) Python temporarily changes my variable, how do i stop that?

So i have this code:

from random import randint
for i in range(9999999):
    a=input("press any key to roll the wheel: ")
    money=0
    money2=randint(0, 400)
    money+=money2
    print(money)

And while i was testing the program, i found that it isn't doing what i expected it to do (for example: add 382 with 196), i wanna ask, whats wrong? Everything looks to be working just fine, just that it seems to change the "money" variable temporarily, after that it resets. What happens when you press enter multiple times




Aucun commentaire:

Enregistrer un commentaire