ConvertQCM/C2/codes/q86_75.py
2025-08-26 18:38:28 +02:00

6 lines
No EOL
136 B
Python

def fonctionMystere(table):
mystere = []
for ligne in table:
if ligne[2] == 'F':
mystere.append(ligne[1])
return mystere