How to get the modulus (mod) (%) of dividing each element in array by N in Python

2 Answers

0 votes
import numpy as np 
    
arr = np.array([1.5, 2, 3.14, 5, 6.9, 7, 9]) 
    
N = 2
arr = arr.__mod__(N)

print(arr)

     
    
'''
run:
  
[1.5  0.   1.14 1.   0.9  1.   1.  ]
    
'''

 



answered Mar 4, 2020 by avibootz
0 votes
import numpy as np 
    
arr = np.array([1.5, 2, 3.14, 5, 6.9, 7, 9]) 
    
N = 3
arr = arr.__mod__(N)

print(arr)

     
    
'''
run:
  
[1.5  2.   0.14 2.   0.9  1.   0.  ]
    
'''

 



answered Mar 4, 2020 by avibootz

Related questions

...