Eine Übung zu List Comprehensions geht noch. Dann ist Schluss.
Was ist die Ausgabe?
Zahlen = [4, 2, 5, 1, 3, 7, 9, 11, 15, 19, 22, 42] Ausgabe = [x%3 for x in Zahlen if x > 10] print(Ausgabe[1])