标签: python
我有一个带有时间戳数据的CSV文件,如下所示:
22/11/2018 10:21:34
然后以这种方式即时解析:currentTime = dt.strptime(line[0], "%d/%m/%Y %H:%M:%S")
currentTime = dt.strptime(line[0], "%d/%m/%Y %H:%M:%S")
解析此类行时(秒数等于00时),我遇到问题:
22/11/2018 10:21:00
我得到:time data '22/11/2018 10:21' does not match format '%d/%m/%Y %H:%M:%S'
time data '22/11/2018 10:21' does not match format '%d/%m/%Y %H:%M:%S'