programming-examples/python/Date/Get the first and last second.py
2019-11-15 12:59:38 +01:00

3 lines
108 B
Python

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