+2 votes
in NumPy by
How to print zeros with 2 rows and 3 columns ?

1 Answer

0 votes
by

arr2 = np.zeros((2,3))

print(‘\nprint 2 rows and 3 cols : ‘,arr2)

Related questions

+2 votes
+1 vote
asked Jul 8, 2021 in NumPy by rajeshsharma
0 votes
asked May 16, 2020 by AdilsonLima
...