Code Numpy Right_shift lorsque les entrées et le changement de bit sont des tableaux

# welcome to softhunt.net
# Python program explaining
# right_shift() function

import numpy as np

arr = [21, 15, 43]
bit_shift_arr =[2, 3, 4]

print ("Input array : ", arr)
print ("array of bit shift : ", bit_shift_arr )
	
ans = np.right_shift(arr, bit_shift_arr)
print ("After right shifting 2 bit : ", ans)
Outrageous Ostrich