尝试从字符串中解析时间,但得到此错误。尝试了一些格式化字符串。
time data '10/2/2010 0:00:00' does not match format '"%m/%d/%Y %H:%M:%S"'
strdt = '10/2/2010 0:00:00'
dt = datetime.strptime(strdt, '"%m/%d/%Y %H:%M:%S"')
答案 0 :(得分:8)
您的格式中包含引号。拿出来。
dt = datetime.strptime(strdt, '%m/%d/%Y %H:%M:%S')
答案 1 :(得分:2)
尝试从格式'“%m /%d /%Y%H:%M:%S”' - >中删除引号'%m /%d /%Y%H:%M:%S'
答案 2 :(得分:1)