def hovedprogram(): bisk = Hund(5, 12) # Lager en instans av hund med alder = 5, vekt = 12 bisk.spring() # Kaller på instansmetoden spring print( "Hundens vekt:", bisk.hentvekt()) # Printer vekt ved å kalle på instansmetode hentinfo. bisk.spring() print("Hundens vekt:", bisk.hentvekt()) bisk.spis(1) # Kaller på instansmetoden spis print("Hundens vekt:", bisk.hentvekt()) bisk.spis(1) print("Hundens vekt:", bisk.hentvekt())
def hovedprogram(): pluto = Hund("7", "12", "10") print("Hundens vekt til å begynne med:", pluto.hentvekt()) pluto.spring() print("Hundens vekt etter løping:", pluto.hentvekt()) pluto.spring() print("Hundens vekt etter løping:", pluto.hentvekt()) pluto.spring() print("Hundens vekt etter løping:", pluto.hentvekt()) pluto.spring() print("Hundens vekt etter løping:", pluto.hentvekt()) pluto.spring() print("Hundens vekt etter løping:", pluto.hentvekt()) pluto.spring() print("Hundens vekt etter løping:", pluto.hentvekt()) pluto.spis() print("Hundens vekt etter spising:", pluto.hentvekt()) pluto.spis() print("Hundens vekt etter spising:", pluto.hentvekt()) pluto.spis() print("Hundens vekt etter spising:", pluto.hentvekt()) pluto.spis() print("Hundens vekt etter spising:", pluto.hentvekt())