python将str类型的数据变成datetime时间类型数据

python将str类型的数据变成datetime时间类型数据

如下:

import datetime

date_str = '2019_05_09'

date_date = datetime.date(*map(int, date_str.split('_')))

print date_date, type(date_date)

# 打印结果
# 2019_05_09 <type 'datetime.date'>

 

posted @
2019-05-09 21:22
aaronthon 阅读(
) 评论(
)
编辑
收藏

    原文作者:aaronthon
    原文地址: https://blog.csdn.net/aaronthon/article/details/90104287
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞