+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)

Related questions

+1 vote
asked Jul 9, 2021 in NumPy by rajeshsharma
+1 vote
asked Jul 9, 2021 in NumPy by rajeshsharma
...