class MyClass:
  "A simple example class"
  def __init__(self):
    self.data = []
  i = 123
  def f(self):
    return 'hello world'
