fork download
  1. def test(a, b=10, c=20):
  2. return a + b+ c
  3.  
  4. a = test(10, 20, 30)
  5. b = test(10, 20)
  6. c = test(10)
  7.  
  8.  
Success #stdin #stdout 0.03s 9612KB
stdin
8
stdout
Standard output is empty