I am new to NumPy and I have created the following array:
import numpy as np
a = np.array([[1,2,3],[4,5,6],[7,8,9]])
and I am wondering if there is a way to print a number from a specific position in the array.
Let’s say I wanted to print number 7, and ONLY number 7. Would that be possible?
Seriously??!?
Print third row (index = 2), first column (index = 0)