Get your own Python server Result Size: 625 x 565
x
 
import numpy as np
arr1 = np.array([10, 20, 30, 40, 50, 60])
arr2 = np.array([3, 5, 6, 8, 2, 33])
newarr = np.power(arr1, arr2)
print(newarr)
[         1000       3200000     729000000 6553600000000          2500             0]