fork download
  1. # Exhibit A
  2.  
  3. def f():print 7;return 5
  4. print 3\
  5.  
  6. +f()
  7.  
  8. # =====================
  9. print "="*20
  10. # =====================
  11.  
  12. # Exhibit B
  13.  
  14. def f():print 7;return 5
  15. print 3\
  16. +f()
Success #stdin #stdout 0.01s 7736KB
stdin
Standard input is empty
stdout
3
7
====================
7
8