Skip to content

Instantly share code, notes, and snippets.

@GroomedGorilla
Created March 7, 2023 10:27
Show Gist options
  • Save GroomedGorilla/5a38ba521c8c4733fbf045b2b2532105 to your computer and use it in GitHub Desktop.
Save GroomedGorilla/5a38ba521c8c4733fbf045b2b2532105 to your computer and use it in GitHub Desktop.
Anonymous Function Sum Bytecode
import dis
dis.dis(lambda x, y: x+y)
# outputs
1 0 LOAD_FAST 0 (x)
2 LOAD_FAST 1 (y)
4 BINARY_ADD
6 RETURN_VALUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment