programming-examples/python/Date/Get the first and last second.py

3 lines
108 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import datetime
print("First Second: ", datetime.time.min)
print("Last Second: ", datetime.time.max)