Using Python dateutil to get Large Date Offsets
Revision as of 15:01, 12 January 2014 by PeterHarding (talk | contribs) (Created page with " My program reads six digit dates, yymmdd, as 19yymmdd. I adjust the 19yymmdd dates to <b>20yymmdd</b> as follows: <pre> self.DoB = datetime.strptime(line[27:35], "%...")
My program reads six digit dates, yymmdd, as 19yymmdd. I adjust the 19yymmdd dates to 20yymmdd as follows:
self.DoB = datetime.strptime(line[27:35], "%Y%m%d") if self.DoB < datetime(2000, 01, 01): self.DoB += relativedelta(years=100)