t209.py 155 B

123456789
  1. class X:
  2. def __init__(self):
  3. self.px = 3
  4. def y(self):
  5. l = "xyz"
  6. if len(l) == self.px:
  7. print "OK"
  8. x = X()
  9. x.y()