Files
30-seconds-of-code/snippets/to_binary.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

355 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise 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