python日期字符串转换为日期对象

Python date string to date object

如何在Python中将字符串转换为日期对象?

字符串为:"24052010"(对应格式:"%d%m%Y")

我不想要datetime.datetime对象,而想要datetime.date。


您可以在python的datetime包中使用strptime

1
2
>>> datetime.datetime.strptime('24052010',"%d%m%Y").date()
datetime.date(2010, 5, 24)

1
2
import datetime
datetime.datetime.strptime('24052010', '%d%m%Y').date()


直接相关问题:

如果你有呢

1
datetime.datetime.strptime("2015-02-24T13:00:00-08:00","%Y-%B-%dT%H:%M:%S-%H:%M").date()

你得到:

1
2
3
4
5
6
7
8
9
10
11
Traceback (most recent call last):
  File"<stdin>", line 1, in <module>
  File"/usr/local/lib/python2.7/_strptime.py", line 308, in _strptime
    format_regex = _TimeRE_cache.compile(format)
  File"/usr/local/lib/python2.7/_strptime.py", line 265, in compile
    return re_compile(self.pattern(format), IGNORECASE)
  File"/usr/local/lib/python2.7/re.py", line 194, in compile
    return _compile(pattern, flags)
  File"/usr/local/lib/python2.7/re.py", line 251, in _compile
    raise error, v # invalid expression
sre_constants.error: redefinition of group name 'H' as group 7; was group 4

你尝试过:

1
<-24T13:00:00-08:00","%Y-%B-%dT%HH:%MM:%SS-%HH:%MM").date()

但你仍然可以找到上面的痕迹。

答:

1
2
3
4
>>> from dateutil.parser import parse
>>> from datetime import datetime
>>> parse("2015-02-24T13:00:00-08:00")
datetime.datetime(2015, 2, 24, 13, 0, tzinfo=tzoffset(None, -28800))


如果你很懒惰,不想和字符串文字作斗争,你可以使用parser模块。

1
2
3
4
from dateutil import parser
dt = parser.parse("Jun 1 2005  1:33PM")
print(dt.year, dt.month, dt.day,dt.hour, dt.minute, dt.second)
>2005 6 1 13 33 0

只是一个旁注,当我们试图匹配any字符串表示时,它比strptime慢10倍。


还有一个叫做arrow的库非常适合在python-date上进行操作。

1
2
3
4
5
import arrow
import datetime

a = arrow.get('24052010', 'DMYYYY').date()
print(isinstance(a, datetime.date)) # True

你有一个这样的日期字符串,"24052010",你想要这个日期对象,

1
2
from datetime import datetime
cus_date = datetime.strptime("24052010","%d%m%Y").date()

这个客户日期将为您提供日期对象。

您可以使用这个从日期对象中检索日期字符串,

1
cus_date.strftime("%d%m%Y")


使用时间模块转换数据。

代码片段:

1
2
3
4
import time
tring='20150103040500'
var = int(time.mktime(time.strptime(tring, '%Y%m%d%H%M%S')))
print var