t323.py 140 B

12345678910
  1. class Foo:
  2. def __init__(self, arg):
  3. self.x = None
  4. def __getitem__(self,key):
  5. return self.x
  6. x = Foo(5)
  7. print x[1]