class Student : ## Oppretter student med gitt navn og oppmøte 0 # def __init__(self, studnavn) : self._navn = studnavn self._antMott = 0 ## Registrer oppmote # def registrer(self) : self._antMott = self._antMott + 1 ## Hent ut verdien i instansvariabel oppmote # def hentOppmote(self) : return self._antMott