Skip to content

Instantly share code, notes, and snippets.

@aabdelfattah
Last active June 4, 2019 11:41
Embed
What would you like to do?
python pass object reference by value
def modify(arg):
arg = 'hard'
str = 'medium'
modify(str)
print(str) # >> medium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment