Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Convertion of number into binary using NumPy binary_repr

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

import numpy as np
num = 15

print ("Input number : ", num)

ans = np.binary_repr(num)
print ("binary representation of 15 : ", ans)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Convertion #number #binary #NumPy
ADD COMMENT
Topic
Name
6+7 =