Skip to content

Instantly share code, notes, and snippets.

@aabdelfattah
Last active June 4, 2019 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aabdelfattah/6ca697289f9817766c561f7ed4204297 to your computer and use it in GitHub Desktop.
Save aabdelfattah/6ca697289f9817766c561f7ed4204297 to your computer and use it in GitHub Desktop.
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