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')) |
- 他不想从字符串中得到日期对象。
- @列维看我的编辑。
- 谢谢,@randomusername。这是我想要的答案。