fork download
  1. def test_method():
  2. print "this is a test method to check sum"
  3. a = 4
  4. b = 3
  5. return a+b
  6.  
  7. print test_method()
Success #stdin #stdout 0.01s 8968KB
stdin
Standard input is empty
stdout
this is a test method to check sum
7