Hi forum!
How would I do this in python?
So far I have this:
x = 0
def increment(x):
print x + 1
return x + 1
x = increment(x)
But every time I run this function I feel that x just disappears or resets itself. Any guidance would be much appreciated.