0
Can anyone tell me the code to make a matrix effect
In Python , C++ or swift
1 Answer
0
With lists:
matrix = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
]
print(matrix[1][2])
In Python , C++ or swift