Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний код:
matrix = [[0] * 3] * 3matrix[1][1] = 1print(matrix)
[[1, 1, 1], [1, 1, 1], [1, 1, 1]]
[[0, 1, 0], [0, 1, 0], [0, 1, 0]]
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
[[0, 0, 0], [0, 1, 0], [0, 0, 0]]
[[3, 3, 3], [3, 1, 3], [3, 3, 3]]
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!