261 B
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