Skip to content

Commit 24dc588

Browse files
author
Christopher Harrison
committed
Updated formatting for linting
1 parent 1ecc160 commit 24dc588

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

‎6 - Dates/README.md‎

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
# Date values
2-
The [datetime module](https://docs.python.org/3/library/datetime.html) contains a number of classe for manipulating dates and times.
2+
3+
The [datetime module](https://docs.python.org/3/library/datetime.html) contains a number of classes for manipulating dates and times.
34

45
Date and time types:
5-
- *date* stores year, month, and day
6-
- *time* stores hour, minute, and second
7-
- *datetime* stores year, month, day, hour, minute, and second
8-
- *timedelta* a duration of time between two dates, times, or datetimes
6+
7+
- `date` stores year, month, and day
8+
- `time` stores hour, minute, and second
9+
- `datetime` stores year, month, day, hour, minute, and second
10+
- `timedelta` a duration of time between two dates, times, or datetimes
911

1012
When naming variables follow the PEP-8 Style Guide for Python Code
11-
- [PEP-8 Style Guide](https://www.python.org/dev/peps/pep-0008/#naming-conventions)
13+
14+
- [PEP-8 Style Guide](https://www.python.org/dev/peps/pep-0008/#naming-conventions)
1215

1316
Converting from string to datetime
17+
1418
- [strptime](https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior)
15-

0 commit comments

Comments
 (0)