fork download
  1. class Test(object):
  2. @staticmethod
  3. def test(a, b):
  4. return a + b
  5.  
  6. print(Test.test(1, 2))
  7. print(Test().test(3, 4))
Success #stdin #stdout 0s 23336KB
stdin
Standard input is empty
stdout
3
7