I really don't have a clue how to increase variables by using function with an argument. Code down below prints 0 and 1 and i understand why but i don't know how to fix it. It's just a general 'shape' of a code, so there can be any number of variables. Will appreciate if you take a look!
i=0
b=0
def increase(a):
print(a)
a+=1
print(a)
for e in range (3):
increase(i)
increase(b)