Prepare repository for merge
This commit is contained in:
20
python/snippets/to-binary.md
Normal file
20
python/snippets/to-binary.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Number to binary
|
||||
type: snippet
|
||||
tags: [math]
|
||||
cover: digital-nomad-13
|
||||
dateModified: 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
|
||||
```
|
||||
Reference in New Issue
Block a user