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

5 lines
No EOL
130 B
Python
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

A = [ [1,2,3], [4,5,6], [7,8,9] ]
B = [ [0,0,0], [0,0,0], [0,0,0] ]
for i in range(3):
for j in range(3):
B[i][j] = A[j][i]