HomeNumPy WAP to extract and display all odd values from a 1D array. 0 Comments Facebook Twitter Q. Write a program to extract and display all odd values from a 1D array.Answer :- import numpy as np arr = np.array(range(1,100)) print("Odd number ", arr[arr%2! = 0])
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )