4 lines
85 B
Python
4 lines
85 B
Python
|
import numpy as np
|
||
|
a=np.array([[3,0,-2,11],[0,0,9,0],[0,7,0,0],[0,0,0,-3]])
|
||
|
|
||
|
print(a)
|