Skip to content

Instantly share code, notes, and snippets.

@agusrichard
Created January 23, 2021 13:48
Show Gist options
  • Save agusrichard/d695cda8b2c3dfd087b6f39cca8b734c to your computer and use it in GitHub Desktop.
Save agusrichard/d695cda8b2c3dfd087b6f39cca8b734c to your computer and use it in GitHub Desktop.
def outer_function():
def inner_function_one():
print('Calling first inner function')
def inner_function_two():
print('Calling second inner function')
inner_function_one()
inner_function_two()
outer_function()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment