Files
30-seconds-of-code/snippets/to-binary.md
Angelos Chalaris f6a215e9e3 Kebab file names
2023-04-27 22:00:06 +03:00

359 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Number to binary math digital-nomad-13 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