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

时间:2009-03-26 17:10:34

标签: python sql mysql datetime tuples

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

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

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

1 个答案:

答案 0 :(得分:20)

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')