fork download
  1. import dis
  2.  
  3. def f():
  4. return 314
  5.  
  6. dis.dis(f)
  7.  
Success #stdin #stdout 0.04s 9560KB
stdin
Standard input is empty
stdout
  4           0 LOAD_CONST               1 (314)
              3 RETURN_VALUE