Number to binary

Python, Math · Oct 7, 2020

Returns the binary representation of the given number.

  • Use bin() to convert a given decimal number into its binary equivalent.
def to_binary(n):
  return bin(n)
to_binary(100) # 0b1100100

More like this

  • Number to hex

    Returns the hexadecimal representation of the given number.

    Python, Math · Oct 9, 2020

  • Integer to roman numeral

    Converts an integer to its roman numeral representation. Accepts value between 1 and 3999 (both inclusive).

    Python, Math · Nov 2, 2020

  • Arithmetic progression

    Generates a list of numbers in the arithmetic progression starting with the given positive integer and up to the specified limit.

    Python, Math · Nov 2, 2020