Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:28:27 +02:00
parent 0a2f7993f7
commit 98b5f67412
23 changed files with 68 additions and 59 deletions

View File

@ -5,7 +5,7 @@ tags: string,math,beginner
Pads a given number to the specified length.
- Use `str.zfill()` to pad the number to specified length, after converting it to a string.
- Use `str.zfill()` to pad the number to the specified length, after converting it to a string.
```py
def pad_number(n, l):