+1 vote
in NumPy by
create 4*4 and print 0 to 12

1 Answer

0 votes
by
create 4*4 and print 0 to 12

num_arr = np.array([[1,2,3,4],[5,6,7,8],[9,10,11,12]])

print(num_arr)
...