Skip to content

Instantly share code, notes, and snippets.

@adrianmarkperea
Last active October 13, 2019 05:29
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 adrianmarkperea/96e9cf39a50be36b4017f85b9b9d1ab5 to your computer and use it in GitHub Desktop.
Save adrianmarkperea/96e9cf39a50be36b4017f85b9b9d1ab5 to your computer and use it in GitHub Desktop.
# scopes.py
# Scope A
a = 1
b = 16
def outer():
# Scope B
c = 24
d = 'Hello, World!'
def inner():
# Scope C
e = 'I like'
f = 'fried chicken'
# (Implicit) Scope D
print('Hello!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment