from person import Person def hovedprogram(): magnus = Person(25, 182, 83, "Magnus") print(magnus.hent_alder()) magnus.hent_vekt() magnus.spis(20) magnus.tren(4) magnus.hent_vekt() print(magnus._vekt) hovedprogram()