I'm trying to change every value of a variable with a specific function
For that I tried this:
 Value = 0
 def ChangeValue(Variable):
     Variable = 1
 ChangeValue(Value)
 print(Value)
It actually should outcome 1, but it doesn't. What am I doing wrong ?
 
    