我在转换时遇到了价值错误,
from datetime import datetime
b="Sep 23 09:53:38 2019 GMT"
date = datetime.strptime(b, "%d %b %Y")
print(date)
答案 0 :(得分:0)
您必须完全分解时间字符串才能获得日期时间:
date = datetime.strptime(b, "%b %d %H:%M:%S %Y %Z")
datetime.datetime(2019,9,23,9,53,38)