其他分享
首页 > 其他分享> > 爬虫杂记——时间:字符串转timeobject

爬虫杂记——时间:字符串转timeobject

作者:互联网

爬虫杂记——时间:字符串转timeobject

\(\color{blue}{需求}\)

将存于数据库中的字符串时间转为timeobject

\(\color{blue}{实现}\)

import datetime
// ...
time_object = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
// ...

关键就在于datetime中striptime函数的运用

标签:blue,...,timeobject,爬虫,datetime,color,杂记,字符串
来源: https://www.cnblogs.com/OceanCT/p/15855963.html