基本上我有以下格式的日期/时间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)
但是在控制台中,我看到了合适的伙伴。
非常感谢所有回复。