python pass object reference by value
def modify(arg): | |
arg += [1] | |
l = [2] | |
modify(l) | |
print(l) # >> [2, 1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
def modify(arg): | |
arg += [1] | |
l = [2] | |
modify(l) | |
print(l) # >> [2, 1] |