Write a NumPy program to create and display every element of a numpy array.
import numpy as np x = np.arange(12).reshape(3, 4) for x in np.nditer(x): print(x,end=' ') print()
Sample Output:
0 1 2 3 4 5 6 7 8 9 10 11
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