Login
Remember
Register
Ask a Question
How to print zeros with 2 rows and 3 columns ?
+2
votes
asked
Jul 3, 2021
in
NumPy
by
sharadyadav1986
How to print zeros with 2 rows and 3 columns ?
print-numpy
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 3, 2021
by
sharadyadav1986
arr2 = np.zeros((2,3))
print(‘\nprint 2 rows and 3 cols : ‘,arr2)
...