From 6bed9731b35058b1c789f61d996733415c0c6d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 15 Mar 2019 00:54:38 +0100 Subject: [PATCH] Datetime fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b11e6e..ebc577a 100644 --- a/README.md +++ b/README.md @@ -457,7 +457,7 @@ from itertools import product, combinations, combinations_with_replacement, perm Datetime -------- * **Module Datetime provides Date (`''`), Time (`''`) and Datetime (`'
'`) classes.** -* **Time and Datetime can be 'aware' (`''`), meaning they have defined timezone, or 'naive' (`''`), meaning they don't. +* **Time and Datetime can be 'aware' (`''`), meaning they have defined timezone, or 'naive' (`''`), meaning they don't.** ```python $ pip3 install pytz @@ -473,7 +473,7 @@ import pytz = timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0) ``` * **`'fold=1'` means second pass in case of time jumping back for one hour.** -* **Use `'.weekday()'` to get day of the week (Mon == 0). +* **Use `'.weekday()'` to get day of the week (Mon == 0).** ### Now ```python