Python Program to Print Numpy Array Items

Write a Python Program to Print Numpy Array Items. We can use the print statement to print the numpy array items. import numpy as np arr = np.array([15, 20, 40, 78, 50, 99, 248, 122]) print(“*** Numpy Array Items ***”) print(arr) strarr = np.array([‘India’, ‘USA’, ‘Cananda’, ‘Japan’]) print(“\n*** Numpy Array Items ***”) print(strarr) Print Python … Read more