Consider the following snippet of code:
```
M = [[0 for j in range(3)] for i in range(3)]
```
Select the snippet of code that is equivalent to this.
Q26
30 Apr 2023
Programming in Python · Week 7
Q26.Consider the following snippet of code:
```
M = [[0 for j in range(3)] for i in range(3)]
```
Select the snippet of code that is equivalent to this.