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

6 lines
No EOL
149 B
Python

image = [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0,
0, 0]]
for i in range(4):
for j in range(4):
if (i+j) == 3:
image[i][j] = 1