日期与python datetime.strptime中的格式不匹配

时间:2014-12-26 20:43:23

标签: python datetime python-3.x strptime python-datetime

如果datetime.strptime可能为1,为什么我在Python MINYEAR中出错?我的设置是Mac OSX 10.10.2 Python 3.4。

from datetime import *
    def days_diff(date1, date2):
        c=datetime.strptime('.'.join(str(i) for i in date1),"%Y.%m.%d")
        d=datetime.strptime('.'.join(str(i) for i in date2),"%Y.%m.%d")
        return print(c,d)

    days_diff((1, 1, 1), (9999,12,31))

ValueError: time data '1.1.1' does not match format '%Y.%m.%d'

1 个答案:

答案 0 :(得分:0)

%Y格式只能使用四位

多年
>>> datetime.strptime('0001.1.1', '%Y.%m.%d')
datetime.datetime(1, 1, 1, 0, 0)

您可以使用str.zfill()填充“日期”字符串:

c = datetime.strptime('.'.join(str(i) for i in date1).zfill(8), "%Y.%m.%d")
d = datetime.strptime('.'.join(str(i) for i in date2).zfill(8), "%Y.%m.%d")