Source Code:
(back to article)
def increment(n): n += 1 x = 1 increment(x) print(x) # Output: 1
Result:
Report an issue