I want to make variables like this:
Var1 = 0
Var2 = 0
Var3 = 0
Var4 = 0
into something like this:
allvar = (Var1 = 0, Var2 = 0, Var3 = 0, Var4 = 0)
I want a list like this because I want to use the remove()
function to remove variables as the user inputs a specific thing.