本文介绍了Python日期字符串到日期对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在python中将字符串转换为日期对象?
字符串将是:24052010
(对应格式为% d%m%Y
)
我不要想要一个datetime.datetime对象,而是一个datetime.date
解决方案
您可以使用包的Python:
>>> datetime.datetime.strptime('24052010','%d%m%Y)。date()
pre>
datetime.date(2010,5,24)
How do I convert a string to a date object in python?
The string would be:
"24052010"
(corresponding to the format:"%d%m%Y"
)I don't want a datetime.datetime object, but rather a datetime.date
解决方案You can use
strptime
in thedatetime
package of Python:>>> datetime.datetime.strptime('24052010', "%d%m%Y").date() datetime.date(2010, 5, 24)
这篇关于Python日期字符串到日期对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!