This is my answer it works well..!
def binary(value) : binary_value = '' while value !=1 : binary_value += str(value%2) value = value//2 return '1'+binary_value[::-1]
This is my answer it works well..!
def binary(value) : binary_value = '' while value !=1 : binary_value += str(value%2) value = value//2 return '1'+binary_value[::-1]