+ 2
What do the op-codes in the disassembled Python code mean? [Bytecode]
Here's the code: https://code.sololearn.com/cpddmYo2RSOh/?ref=app For example, what does LOAD_CONST mean?
2 Answers
+ 4
Here try this to line up the opcode with the opname then you can look them up in the docs (toward the bottom of the page)
https://docs.python.org/3/library/dis.html#python-bytecode-instructions
https://code.sololearn.com/c3saOeC7Cz6e/?ref=app
+ 2
ChaoticDawg Thank you for the link.