Write a NumPy program to find the 4th element of a specified array.
import numpy as np x = np.array([[2, 4, 6], [6, 8, 10]], np.int32) print(x) e1 = x.flat[3] print("Forth e1ement of the array:") print(e1)
Sample Output:
[[ 2 4 6] [ 6 8 10]] Forth e1ement of the array: 6
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer