ValueError: time data '2017-04-20 10:00:00-04:00' does not match format '%Y-%b-%d %H:%M:%S-%Z'
ValueError: time data '2017-04-20 10:00:00-04:00' does not match format '%Y-%b-%d %H:%M:%S-%Z'
ValueError: time data '2017-04-20 10:00:00-04:00' does not match format '%Y-%b-%d %H:%M:%S-%Z'
我对时区部分感到困惑
%b
标记用于缩写月份名称。 04
不是名字。 %b
期望更像 Apr
。对于数字月份,使用 %m
.
ValueError: time data '2017-04-20 10:00:00-04:00' does not match format '%Y-%b-%d %H:%M:%S-%Z'
我对时区部分感到困惑
%b
标记用于缩写月份名称。 04
不是名字。 %b
期望更像 Apr
。对于数字月份,使用 %m
.