Correction 1 2 3 4 5 6def selection_enclos(animaux, num_enclos): table = [] for animal in animaux: if animal['enclos'] == num_enclos: table.append(animal) return table