Skip to content

Instantly share code, notes, and snippets.

@AnnikaNoren
Created October 20, 2020 17:23
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 AnnikaNoren/3d33946d4aaf96b82fdd8620017e9cf1 to your computer and use it in GitHub Desktop.
Save AnnikaNoren/3d33946d4aaf96b82fdd8620017e9cf1 to your computer and use it in GitHub Desktop.
a = "global"
b = "global"
a = 2*a
print("Outside of the function",a)
def my_func():
b = 2*b
print("Inside of the function",b)
my_func()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment