Skip to content

Instantly share code, notes, and snippets.

@wardi
Created December 4, 2014 18:44
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 wardi/19bd4ecb17cdaa896c83 to your computer and use it in GitHub Desktop.
Save wardi/19bd4ecb17cdaa896c83 to your computer and use it in GitHub Desktop.
>>> dis.dis(lambda: 10000/2 + 1)
1 0 LOAD_CONST 1 (10000)
3 LOAD_CONST 2 (2)
6 BINARY_DIVIDE
7 LOAD_CONST 3 (1)
10 BINARY_ADD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment