Numpy Left_shift Code Saat input dan bit shift adalah array

# welcome to softhunt.net
# Python program explaining
# left_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.left_shift(arr, bit_shift_arr)
print ("After left shifting 2 bit : ", ans)
Outrageous Ostrich