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

8 lines
No EOL
136 B
Python

def construitTable(L,C):
t = []
for i in range(L):
ligne = []
for j in range(C):
......
t.append(ligne)
return t