Files
30-seconds-of-code/snippets/to_binary.md
2020-10-07 19:46:01 +03:00

261 B

title, tags
title tags
to_binary math,beginner

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