Skip to content
This repository was archived by the owner on May 7, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 339 Bytes

to-binary.md

File metadata and controls

20 lines (16 loc) · 339 Bytes
title type tags cover dateModified
Number to binary
snippet
math
digital-nomad-13
2020-10-07 19:46:01 +0300

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