Files
30-seconds-of-code/snippets/to_binary.md
Isabelle Viktoria Maciohsek cbc78ee450 Bake dates into snippets
2021-06-13 19:38:10 +03:00

20 lines
337 B
Markdown

---
title: to_binary
tags: math,beginner
firstSeen: 2020-10-07T19:46:01+03:00
lastUpdated: 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.
```py
def to_binary(n):
return bin(n)
```
```py
to_binary(100) # 0b1100100
```