Time, Date, Timestamp in Python: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
=Overview= | =Overview= | ||
Time, date and timestamps are handled with the <code>datetime</code> | Time, date and timestamps are handled with the <code>time</code> and <code>datetime</code> modules, available in the Standard Library. | ||
Additionally, the <code>dateutil</code> module provides useful extensions. | Additionally, the <code>dateutil</code> module provides useful extensions. |
Revision as of 21:35, 8 October 2023
Internal
Overview
Time, date and timestamps are handled with the time
and datetime
modules, available in the Standard Library.
Additionally, the dateutil
module provides useful extensions.