你能告诉我如何在python中将这个日期字符串转换为总秒数?

Can you please tell me how can I convert this date string to total seconds in python?

本问题已经有最佳答案,请猛点这里访问。

你能告诉我如何用python将这个日期字符串转换为总秒数吗?

此字符串格式为'Years Months Days Hours:Mins:Secs'

'2013-01-01 01:01:01'


使用 </P >

1
2
import time
answer = time.mktime(time.strptime(string, '%Y-%m-%d %H:%M:%S'))