Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 8, 2019 05:20
Show Gist options
  • Save Ventsislav-Yordanov/d7b64b57642a925fdc259c1e5a32f69b to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/d7b64b57642a925fdc259c1e5a32f69b to your computer and use it in GitHub Desktop.
subject = "programming"
def change_subject(new_value):
"""Change the value fo the global variable subject"""
global subject # Use subject in global scope
subject = new_value
print(subject)
change_subject("machine learning")
print(subject)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment