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

8 lines
No EOL
177 B
Python

def quoi(liste):
maListe = []
for i in range(len(liste))
maListe.append(liste[i][0])
return maListe
L = [[5,8,12,1], [20,11,3,8], [3,12,1,4], [2,13,17,3]]
m = quoi(L)