2013-10-25 117 views
0

DateTime對象我有串日期:字符串在Python

mystring = "2013-10-25 07:53:07.367857" 

我可以把這個字符串轉換日期時間對象?

回答

2

是的,你想

from datetime import datetime 
    datetime.strptime(mystring, "%Y-%m-%d %H:%M:%S.%f")