gpt4 book ai didi

python - 如何将 python 中的时间戳格式化为可读格式?

转载 作者:太空宇宙 更新时间:2023-11-04 04:06:16 25 4
gpt4 key购买 nike

我有一个 slack 机器人,它获取日程信息并打印用户日程的开始和结束时间。我正在尝试格式化时间戳,以便它是一种更具可读性的格式。有没有办法格式化此响应?

这是一个输出示例:

co = get_co(command.split(' ')[1])
start = get_schedule(co['group'])['schedule']['schedule_layers'][0]['start']
end = get_schedule(co['group'])['schedule']['schedule_layers'][0]['end']
response = 'Start: {} \n End: {}'.format(start,end)

当前时间格式是 2019-06-28T15:12:49-04:00,但我希望它更易读,例如 Fri Jun 28 15:12:49 2019

最佳答案

您可以使用 dateparser轻松解析日期时间字符串。

import dateparser

date = dateparser.parse('2019-06-28T15:12:49-04:00') # parses the date time string

print(date.strftime('%a %b %d %H:%m:%M %Y'))
# Fri Jun 28 15:06:12 2019

实际操作 here

关于python - 如何将 python 中的时间戳格式化为可读格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57328008/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com