How to compare elements of two arrays in Python

2 Answers

0 votes
import numpy as np

arr1 = np.array([1, 3, 5, 7, 9])
arr2 = np.array([2, 3, 4, 7, 12])

print(np.greater_equal(arr1, arr2))

 
 
 
'''
run:
 
[False  True  True  True False]
 
'''

 



answered Feb 21, 2023 by avibootz
0 votes
import numpy as np

arr1 = np.array([1, 3, 5, 7, 9])
arr2 = np.array([2, 3, 4, 7, 12])

print(np.less_equal(arr1, arr2))

 
 
 
'''
run:
 
[True  True False  True  True]
 
'''

 



answered Feb 21, 2023 by avibootz

Related questions

2 answers 181 views
1 answer 155 views
155 views asked Jun 5, 2023 by avibootz
3 answers 251 views
251 views asked Jan 25, 2022 by avibootz
3 answers 267 views
3 answers 221 views
...