+2 votes
in NumPy by
Print row 2 column 2 output will 9

1 Answer

0 votes
by

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

print(‘\nprint 9 : ‘,num[2][2])

num2 = np.arange(10,101)

print(num2)

Related questions

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