Skip to content

Instantly share code, notes, and snippets.

@abhi923
Created April 17, 2020 06:28
Show Gist options
  • Save abhi923/8a2a73191dc51147f9a784138ee21c29 to your computer and use it in GitHub Desktop.
Save abhi923/8a2a73191dc51147f9a784138ee21c29 to your computer and use it in GitHub Desktop.
def a():
print('a() starts')
b()
d()
print('a() returns')
def b():
print('b() starts')
c()
print('b() returns')
def c():
print('c() starts')
print('c() returns')
def d():
print('d() starts')
print('d() returns')
a()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment