Write a Python program to get the first and last second


The program is written in Python and uses the datetime module to access the datetime.time object. datetime.time is a class that is used to represent time in a 24-hour clock format.

  • The first line import datetime imports the datetime module, which provides classes for working with dates, times, and time zones.
  • The next two lines use the print function to display the minimum and maximum time that can be represented by the datetime.time class. The min attribute represents the earliest time of day (00:00:00) and the max attribute represents the latest time of day (23:59:59).
  • In other words, the program outputs the first and last seconds of a day, as represented by the datetime.time class.

Source Code

import datetime
print("First Second: ", datetime.time.min)
print("Last Second: ", datetime.time.max)

Output

First Second:  00:00:00
Last Second:  23:59:59.999999

Example Programs