fork download
  1. def fun1(x,y):
  2. print " %s" % (x/y)
  3.  
  4. def fun2(x,y):
  5. print "%s" % (x//y)
  6.  
  7. fun1(5,2)
  8. fun1(5.,2)
  9. fun2(5,2)
  10. fun2(5.,2)
Success #stdin #stdout 0.02s 118656KB
stdin
Standard input is empty
stdout
 2
 2.5
2
2.0