Must warn you, super new to programming. I have a var named base, and no assigning statements pointing that var, but when I run the code, the value of base changes. I can't post the entire code, but I have ctrl-f every line that references base
base = [1,2,3,4]
stack = base
....
maxdump = int((base[0] + base[-1])*1000)
....
wintotal += int(sum(base))
stack = base
....
I'm trying to use base as a reset button for the var stack, but for some reason when stack goes up, base is matching it, so I instead just get a giant overflow.