6 lines
No EOL
136 B
Python
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 |