Converção de número em binário usando 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)
Outrageous Ostrich