t499.py 129 B

1234567891011
  1. class MyTest:
  2. def __init__(self,s):
  3. self.w = s
  4. def length(self):
  5. return len(self.w)
  6. x = MyTest("foo")
  7. print x.length()