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

4 lines
No EOL
81 B
Python

res = [ [1,2,3], [4,5,6], [7,8,9] ]
S = 0
for i in range(3):
S = S + res[i][2]