+2 votes
in NumPy by (30.5k points)
How to print zeros with 2 rows and 3 columns ?

1 Answer

0 votes
by (30.5k points)

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

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

...