How to compute 2 to the power k for all elements in an array in Python

2 Answers

0 votes
import numpy as np

arr = np.array([2, 3, 4, 7, 9])

print(np.exp2(arr))

 
 
 
'''
run:
 
[  4.   8.  16. 128. 512.]
 
'''

 



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

arr = np.array([2, 3, 4, 7, 9])

print([2**k for k in arr])

 
 
 
'''
run:
 
[4, 8, 16, 128, 512]
 
'''

 



answered Feb 21, 2023 by avibootz
...