timedelta to float

Solutions on MaxInterview for timedelta to float by the best coders in the world

showing results for - "timedelta to float"
Dario
29 Jul 2017
1# instead, can convert timedelta to float of second
2time_d_float = time_d.total_seconds()
3