30秒学会 Python 片段 · 2022年5月2日

30秒学会 Python 片段 – Number to binary

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

翻译自:https://www.30secondsofcode.org/python/s/to-binary