Answers for "NumPy left_shift Code When inputs and bit shift are numbers"

0

NumPy left_shift Code When inputs and bit shift are numbers

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

import numpy as np
num = 3
bit_shift_num = 2

print ("Input number : ", num)
print ("Number of bit shift : ", bit_shift_num )
	
ans = np.left_shift(num, bit_shift_num)
print ("After left shifting 2 bit : ", ans)
Posted by: Guest on April-29-2022

Python Answers by Framework

Browse Popular Code Answers by Language