Formatting date string in Python for dates prior to 1900?

后端 未结 4 1823
梦谈多话
梦谈多话 2020-12-21 07:00

Can anyone explain the best way to format a date time string in Python where the date value is prior to the year 1900? strftime requires dates later than 1900.<

4条回答
  •  春和景丽
    2020-12-21 07:10

    The calendar is exactly the same every 400 years. Therefore it is sufficient to change year by multiple of 400 such as year >= 1900 before calling datetime.strftime().

    The code shows what problems such approach has:

    #/usr/bin/env python2.6
    import re
    import warnings
    from datetime import datetime
    
    
    def strftime(datetime_, format, force=False):
        """`strftime()` that works for year < 1900.
    
        Disregard calendars shifts.
    
        >>> def f(fmt, force=False):
        ...     return strftime(datetime(1895, 10, 6, 11, 1, 2), fmt, force)
        >>> f('abc %Y %m %D') 
        'abc 1895 10 10/06/95'
        >>> f('%X')
        '11:01:02'
        >>> f('%c') #doctest:+NORMALIZE_WHITESPACE
        Traceback (most recent call last):
        ValueError: '%c', '%x' produce unreliable results for year < 1900
        use force=True to override
        >>> f('%c', force=True)
        'Sun Oct  6 11:01:02 1895'
        >>> f('%x') #doctest:+NORMALIZE_WHITESPACE
        Traceback (most recent call last):
        ValueError: '%c', '%x' produce unreliable results for year < 1900
        use force=True to override
        >>> f('%x', force=True)
        '10/06/95'
        >>> f('%%x %%Y %Y')
        '%x %Y 1895'
        """
        year = datetime_.year
        if year >= 1900:
           return datetime_.strftime(format)
    
        # make year larger then 1900 using 400 increment
        assert year < 1900
        factor = (1900 - year - 1) // 400 + 1
        future_year = year + factor * 400
        assert future_year > 1900
    
        format = Specifier('%Y').replace_in(format, year)
        result = datetime_.replace(year=future_year).strftime(format)
        if any(f.ispresent_in(format) for f in map(Specifier, ['%c', '%x'])):
            msg = "'%c', '%x' produce unreliable results for year < 1900"
            if not force:
                raise ValueError(msg + " use force=True to override")
            warnings.warn(msg)
            result = result.replace(str(future_year), str(year))
        assert (future_year % 100) == (year % 100) # last two digits are the same
        return result
    
    
    class Specifier(str):
        """Model %Y and such in `strftime`'s format string."""
        def __new__(cls, *args):
            self = super(Specifier, cls).__new__(cls, *args)
            assert self.startswith('%')
            assert len(self) == 2
            self._regex = re.compile(r'(%*{0})'.format(str(self)))
            return self
    
        def ispresent_in(self, format):
            m = self._regex.search(format)
            return m and m.group(1).count('%') & 1 # odd number of '%'
    
        def replace_in(self, format, by):
            def repl(m):
                n = m.group(1).count('%')
                if n & 1: # odd number of '%'
                    prefix = '%'*(n-1) if n > 0 else ''
                    return prefix + str(by) # replace format
                else:
                    return m.group(0) # leave unchanged
            return self._regex.sub(repl, format)
    
    
    if __name__=="__main__":
        import doctest; doctest.testmod()
    

提交回复
热议问题