Files
30-seconds-of-code/python/s/to-binary.md
Angelos Chalaris 5c913d20bd Reorganize snippets
2023-05-03 21:19:02 +03:00

356 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Number to binary snippet python
math
digital-nomad-13 2020-10-07T19:46:01+03:00

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