Files
30-seconds-of-code/snippets/to_binary.md
Isabelle Viktoria Maciohsek 0f3e0f9ed0 Update snippet titles
2022-02-13 14:41:40 +02:00

344 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
Number to binary math,beginner 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