Skip to content

Instantly share code, notes, and snippets.

@laixintao
Created April 7, 2020 07:04
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 laixintao/5804fd7b3c123fccf62cfbdebf2d0813 to your computer and use it in GitHub Desktop.
Save laixintao/5804fd7b3c123fccf62cfbdebf2d0813 to your computer and use it in GitHub Desktop.
def foo(num):
print("foo run")
return num ** 20
def bar(x):
if 0:
print(x)
bar(foo(10))
# result: foo run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment