Published
- 1 min read
generate matrix python
The solution for this is noted below
generate matrix python
Solution
matrix = [[0 for column in range(3)]for row in range(3)]
# Generates a 3x3 bidimensional array
Try other methods by searching on the site. That is if this doesn’t work