class SemRom: def __init__(self, navn): self.calender = [] self.navn = navn self.st?rrelse = 4 def book(self, time): self.calender.append(time) python = SemRom("Python") caml = SemRom("CAML") print(python.navn) print(caml.navn) print(python.calender) python.book("14:00") print(python.calender)