Primary
datetime.time() ⚬ᵖʸ|Documentation|1st|20251021150654-00-⌔
datetime — Basic date and time types — Python 3 documentation#datetime.time
class
datetime.time(hour=0, minute=0, second=0, microsecond=0, tzinfo=None, ﹡, fold=0)All arguments are optional. tzinfo may be
None, or an instance of atzinfosubclass. The remaining arguments must be integers in the following ranges:
0 <= hour < 24,0 <= minute < 60,0 <= second < 60,0 <= microsecond < 1000000,fold in [0, 1].If an argument outside those ranges is given,
ValueErroris raised. All default to 0 except tzinfo, which defaults toNone.Class attributes:
Printed 2026-06-28.
Link to original
Secondary
• • •