标签:map class import spl date imp str 类型 时间类
如下:
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‘>
python将str类型的数据变成datetime时间类型数据
标签:map class import spl date imp str 类型 时间类
原文地址:https://www.cnblogs.com/aaronthon/p/10841152.html