Convertion of number into binary using NumPy binary_repr

29

# 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)

Comments

Submit
0 Comments