from sirkel import Sirkel def hovedprogram(): s1 = Sirkel(6) s2 = Sirkel(15) print(f"Sirkel1:{s1.hent_areal():.2f}") print(f"Sirkel2: {s2.hent_areal():.2f}") hovedprogram()