Python dateutil returns YYYY-MM-DD,但我需要反转,请帮忙?

Python dateutil returns YYYY-MM-DD, but I need it reversed , help please?

我在 python 中有一段脚本可以解析包含日期和时间的行:

d = dateutil.parser.parse("%s %s" % (m.group('date'),
            m.group('time')), dayfirst=True)

它 returns YYYY-MM-DD 格式的日期。我怎样才能说 Weekday DD Month YYYY?或者如果那不可能 DD-MM-YYYY?

此外,它还给出了HH:MM:SS中的时间,但我只需要HH:MM,有没有办法把秒数减掉?

谢谢!

我是python的新手,所以希望有人能帮助我,非常感谢!

使用日期时间模块的 strftime 根据文档更改格式。

d = '2019-01-09'
d = datetime.datetime.strptime(d, '%Y-%m-%d')
print(d)
d = d.strftime('%A %d %B %Y %H:%M') # %I:%M if you want 12 hour format
print(d) # Wednesday 09 January 2019 00:00
from datetime import date, timedelta

day = date.today() # this gives you output in default YYYY-MM-DD format

now = datetime.now() # this give your output in default YYYY-MM-DD hh:mm:ss.millisec format

timestamp = now.strftime('%d-%m-%Y-%H:%M') # this gives you the output in the format you are looking for. See the screenshot

查看此 link 了解更多详情:https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior