Answers for "get seconds with datetime python"

1

python datetime to seconds

from datetime import datetime
dt = datetime.today()  # Get timezone naive now
seconds = dt.timestamp()
Posted by: Guest on April-07-2021

Code answers related to "get seconds with datetime python"

Python Answers by Framework

Browse Popular Code Answers by Language