gpt4 book ai didi

Python,将 9 个元组 UTC 日期转换为 MySQL 日期时间格式

转载 作者:IT老高 更新时间:2023-10-29 00:20:23 29 4
gpt4 key购买 nike

我正在使用此处指定的格式解析 RSS 提要:http://www.feedparser.org/docs/date-parsing.html

日期元组 (2009, 3, 23, 13, 6, 34, 0, 82, 0)

我对如何将其转化为 MySQL 日期时间格式 (Y-m-d H:M:S) 感到有点困惑?

最佳答案

tup = (2009, 3, 23, 13, 6, 34, 0, 82, 0)
import datetime
d = datetime.datetime(*(tup[0:6]))
#two equivalent ways to format it:
dStr = d.isoformat(' ')
#or
dStr = d.strftime('%Y-%m-%d %H:%M:%S')

关于Python,将 9 个元组 UTC 日期转换为 MySQL 日期时间格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/686717/

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