CSV在使用CSV python编写时会更改日期和时间格式吗?

时间:2018-09-10 20:18:15

标签: python datetime

基本上我有以下格式的日期/时间2018-9-10 16:5:21,但是当我将其写入csv文件时,它将日期/时间格式转换为10/09/2018 4:05:21 PM

脚本:

now = datetime.datetime.now()
timetoout = str(now.year)+"-"+str(now.month)+"-"+str(now.day)+" "+str(now.hour)+":"+str(now.minute)+":"+str(now.second)
spamwriter.writerow([x] + [x+", "+x] + [x] + [x] + [x] + [timetoout] + [x] + [x])
print(timetoout)

但是在控制台中,我看到了合适的伙伴。

非常感谢所有回复。

0 个答案:

没有答案