from matbutikk import Matbutikk from vare import Vare def hovedprogram(): matbutikk = Matbutikk() vare1 = Vare("123","melk") vare2 = Vare("739","br?d") vare3 = Vare("432","kylling") matbutikk.legg_til_vare(vare1) matbutikk.legg_til_vare(vare2) matbutikk.legg_til_vare(vare3) for vare in matbutikk.hent_varer(): print("vareid:",vare.hent_vareid(),"varenavn:",vare.hent_varenavn()) hovedprogram()