class Person: def __init__(self, navnet): self._navn = navnet def skrivNavn(self): print(self._navn)