to_date
是Month day, Year
格式的字符串,例如2016年5月31日:
to_date=parser.parse(to_date).date()
list.append(to_date)
示例输出:
'44','NOW()',datetime.date(2016,3,31),'0',''
预期产出:
'44','NOW()','2016-3-31','0',''
答案 0 :(得分:2)
使用.strftime()
将日期格式化为字符串:
to_date = parser.parse(to_date).strftime("%Y-%m-%d")
list.append(to_date)