当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《Python,将9元组UTC日期转换为MySQL日期时间格式》经验,为你挑选了1个好方法。

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

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

我有点难以理解如何将其转换为MySQL日期时间格式(Ymd H:M:S)?



1> vartec..:
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')

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有