test_string = "Jeg begynte å fortære en sandwich mens jeg kjørte taxi på vei til quiz" test_list = [] a = "a" for i in range(0, 26): test_list.append(a) a = chr(ord(a) + 1) test_list.append("æ") test_list.append("ø") test_list.append("å") print(test_list) for letter in test_string: for i in test_list: if letter == i: test_list.remove(i) assert test_list == [] print(test_list)