How to get all array elements powered by N value using numpy in Python

1 Answer

0 votes
import numpy as np 
     
arr = np.array([1, 2, 3, 4, 5, 6]) 
     
arr = arr.__pow__(2)

print(arr)
  
     
    
'''
run:
  
[ 1  4  9 16 25 36]
    
'''

 



answered Feb 26, 2020 by avibootz

Related questions

...