def tell_antall_i_liste(liste): tell_ord = {} for ord in liste: if ord not in tell_ord: tell_ord[ord] = 0 tell_ord[ord] += 1 for ord in tell_ord: print("Antall", ord, ":", tell_ord[ord]) def hovedprogram(): tell_antall_i_liste(["F", "E", "R", "S", "K", "E", "N", "B", "R", "U", "S"]) tell_antall_i_liste(["Flodhest", "er", "best", "ingen", "protest"]) hovedprogram()