Skip to content

Instantly share code, notes, and snippets.

@JackInTaiwan
Last active December 3, 2020 11:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JackInTaiwan/8ce4be1a874418b0cfb761acc2815a9e to your computer and use it in GitHub Desktop.
Save JackInTaiwan/8ce4be1a874418b0cfb761acc2815a9e to your computer and use it in GitHub Desktop.
import dis
def dog_bark():
for i in range(3):
print('Miouwo ~~~')
if __name__ == '__main__':
dis.dis(dog_bark)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment