class KaffeLatte: def __init__(self, ant_espressoshots): self._antall_espressoshots = ant_espressoshots def hent_antall_espressoshots(self): return self._antall_espressoshots def hovedprogram(): bestillinger = [] dobbel_latte = KaffeLatte(2) for i in range(5): bestillinger.append(dobbel_latte) for bestilling in bestillinger: print(bestilling) hovedprogram()