fork download
  1. from dis import dis
  2.  
  3. def f():
  4. return 1 + 2 * 3 - 4
  5.  
  6. dis(f)
  7.  
Success #stdin #stdout 0.01s 7352KB
stdin
Standard input is empty
stdout
  4           0 LOAD_CONST               1 (1)
              3 LOAD_CONST               5 (6)
              6 BINARY_ADD          
              7 LOAD_CONST               4 (4)
             10 BINARY_SUBTRACT     
             11 RETURN_VALUE