+2 votes
in NumPy by
print row 1 column 1 output will 5

1 Answer

0 votes
by
num = np.array([[1,2,3],[4,5,6],[7,8,9]])

print(‘\nprint 5 :’,num[1][1])

Related questions

+2 votes
asked Jul 4, 2021 in NumPy by sharadyadav1986
+2 votes
+1 vote
asked Jul 8, 2021 in NumPy by rajeshsharma
...