The smallest value allowed in a time object. All values are based using 00:00:00.000000 as 0.
The largest value allowed in a time object. All values accurate to the microseconds. max is equivalent to 23:59:59.999999.
All arguments are optional. Arguments are integers (or string representations of integers), in the following ranges:
Return the hour for the time provided. Between min_hour and max_hour inclusive. For this example we're using the time 12:34:56.123456.
Return the minute for the time provided. Between min_minute and max_minute inclusive. For this example we're using the time 12:34:56.123456.
Return the second for the time provided. Between min_second and max_second inclusive. For this example we're using the time 12:34:56.123456.
Return the microsecond for the time provided. Between min_microsecond and max_microsecond inclusive. For this example we're using the time 12:34:56.123456.
Return a time with the same value, except for those parameters given new values by whichever keyword arguments are specified. For this example we're using the time 00:00:00.000000 and replacing it with 12:34:56.123456.
Return a string representing the date and time in ISO 8601 format, MM:SS.mmmmmm or, if microsecond is 0, YYYY-MM-DDTHH:MM:SS. For this example we're using the ordinal corresponding to the datetime 12:34:56.123456.
Return a string representing the time, controlled by an explicit format string.