tall_rekke = {3, 6, 8, 1, 6, 2} total = 0 for i in range(len(tall_rekke)): print(list(tall_rekke)[i]) total += list(tall_rekke)[i] print(total)