Skip to content

Instantly share code, notes, and snippets.

@lyxal
Created January 15, 2021 03:42
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 lyxal/7df06dd88807704e2636e150a842d7fa to your computer and use it in GitHub Desktop.
Save lyxal/7df06dd88807704e2636e150a842d7fa to your computer and use it in GitHub Desktop.
def over():
f = """def under():
print("Frick")
under()
"""
exec(f)
print(locals())
under()
over()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment