Files
30-seconds-of-code/snippets/to_binary.md
2022-06-09 13:00:34 +03:00

395 B

title, tags, expertise, cover, firstSeen, lastUpdated
title tags expertise cover firstSeen lastUpdated
Number to binary math beginner blog_images/digital-nomad-13.jpg 2020-10-07T19:46:01+03:00 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