如何从DateTime字符串中检索月,月,日,工作日和小时?

问题描述 投票:0回答:1

我有这个代码来生成ISO格式的日期和时间对象:

from date time import datetime

datetime.now().strftime("%Y-%m.%dT%H:%M")

'2018-09-05T14:09'

如何在不使用正则表达式的情况下从此字符串中检索monthmonth dayweekdayhour

python datetime
1个回答
1
投票

试试这个

 import datetime

string = "19 Nov 2015  18:45:00.000"
date = datetime.datetime.strptime(string, "%d %b %Y  %H:%M:%S.%f")
print(date.year)

print(date.month)

print(date.day)

print(date.hour)

print(date.minute)

print(date.second)

https://onlinegdb.com/S1KDCmKzN

© www.soinside.com 2019 - 2024. All rights reserved.