In this python numpy program, we will test element-wise for real numbers of a given array using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create an array using np.array().
- Test element-wise for real numbers of a given array using np.isreal().
- Print the output.
import numpy as np
x = np.array([2,4,6+9j,7])
print(np.isreal(x))
Output :
[ True True False True]