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
Python, Math · Oct 7, 2020
Returns the binary representation of the given number.
bin()
to convert a given decimal number into its binary equivalent.def to_binary(n):
return bin(n)
to_binary(100) # 0b1100100
Converts an integer to its roman numeral representation. Accepts value between 1
and 3999
(both inclusive).
Python, Math · Nov 2, 2020
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