class Punkt: x=0 y=0 def tutvusta(self): print self.x ," ja ", self.y p=Punkt() p.y=7 p.tutvusta()