Write a NumPy program to test equal, not equal, greater equal, greater and less test of all the elements of two given arrays.
import numpy as np x1 = np.array(['Hello', 'PHP', 'JS', 'examples', 'html'], dtype=np.str) x2 = np.array(['Hello', 'php', 'Java', 'examples', 'html'], dtype=np.str) print("\nArray1:") print(x1) print("Array2:") print(x2) print("\nEqual test:") r = np.char.equal(x1, x2) print(r) print("\nNot equal test:") r = np.char.not_equal(x1, x2) print(r) print("\nLess equal test:") r = np.char.less_equal(x1, x2) print(r) print("\nGreater equal test:") r = np.char.greater_equal(x1, x2) print(r) print("\nLess test:") r = np.char.less(x1, x2) print(r)
Sample Input:
['Hello' 'PHP' 'JS' 'examples' 'html'] ['Hello' 'php' 'Java' 'examples' 'html']
Sample Output:
Array1: ['Hello' 'PHP' 'JS' 'examples' 'html'] Array2: ['Hello' 'php' 'Java' 'examples' 'html'] Equal test: [ True False False True True] Not equal test: [False True True False False] Less equal test: [ True True True True True] Greater equal test: [ True False False True True] Less test: [False True True False False]
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 Input:
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer