Python 和 momentjs 中的日期字符串转换

Date String conversion in Python and momentjs

各位, 我对日期格式和标准非常不满意。将字符串 05/05/2015 转换为 ISO 8601 2015-05-05T00:00:00.000Z 的 pythonic 方法是什么? 我在 python...zachwill/moment 中找到了 moment.js 替代方案,但我没有看到 moment().toISOString();

谢谢!

怎么样

>>> arrow.get(timezone='UTC')
<Arrow [2015-03-08T18:42:06.629114+00:00]>
>>> str(arrow.get())
'2015-03-08T18:42:08.645550+00:00'
>>> arrow.get(tz='UTC').format('YYYY-MM-DDTHH:mm:ss.SSS') + 'Z'
'2015-03-08T18:47:35.205Z'

使用上面链接的时刻库,

start = moment.date('01/29/2015','MM/DD/YYYY').date