Number to binary
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) # 0b1100100Returns 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