About 63,400 results
Open links in new tab
  1. datetime — Basic date and time types — Python 3.14.2 documentation

    The datetime module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is on efficient attribute extraction for output formatting …

  2. DateTime Objects — Python 3.14.2 documentation

    2 days ago · Various date and time objects are supplied by the datetime module. Before using any of these functions, the header file datetime.h must be included in your source (note that this is not …

  3. calendar — General calendar-related functions — Python 3.15.0a2 ...

    4 days ago · Parameters that specify dates are given as integers. For related functionality, see also the datetime and time modules. The functions and classes defined in this module use an idealized …

  4. zoneinfo — IANA time zone support — Python 3.15.0a2 documentation

    ZoneInfo is a concrete implementation of the datetime.tzinfo abstract base class, and is intended to be attached to tzinfo, either via the constructor, the datetime.replace method or datetime.astimezone:

  5. The Python Standard Library — Python 3.15.0a2 documentation

    2 days ago · datetime — Basic date and time types zoneinfo — IANA time zone support calendar — General calendar-related functions collections — Container datatypes collections.abc — Abstract …

  6. Data Types — Python 3.14.2 documentation

    4 days ago · datetime Objects Examples of Usage: datetime time Objects Examples of Usage: time tzinfo Objects timezone Objects strftime() and strptime() Behavior strftime() and strptime() Format …

  7. Pending removal in future versions — Python 3.14.2 documentation

    4 days ago · datetime: utcnow(): use datetime.datetime.now(tz=datetime.UTC). utcfromtimestamp(): use datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC). gettext: Plural value must be an …

  8. Python Documentation contents — Python 3.14.2 documentation

    datetime Objects Examples of Usage: datetime time Objects Examples of Usage: time tzinfo Objects timezone Objects strftime() and strptime() Behavior strftime() and strptime() Format Codes Technical …

  9. time — Time access and conversions — Python 3.12.12 documentation

    This module provides various time-related functions. For related functionality, see also the datetime and calendar modules. Although this module is always available, not all functions are available...

  10. typing — Support for type hints — Python 3.14.2 documentation

    4 days ago · Source code: Lib/typing.py This module provides runtime support for type hints. Consider the function below: The function surface_area_of_cube takes an argument expected to be an …