Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:28:05 +02:00
parent 0ab4b3dbc5
commit 0a2f7993f7
24 changed files with 63 additions and 51 deletions

View File

@ -19,6 +19,6 @@ def is_weekend(d = datetime.today()):
```py
from datetime import date
is_weekend(date(2020,10,25)) # True
is_weekend(date(2020,10,28)) # False
is_weekend(date(2020, 10, 25)) # True
is_weekend(date(2020, 10, 28)) # False
```