def forkort_lagliste(lagliste): return list(set(lagliste)) def hovedprogram(): print(forkort_lagliste(["Brann", "Molde", "Brann"])) hovedprogram()