如果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'
答案 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")