Python中datetime时间戳精确到单位的用法

时间:2022-08-30 02:33:42
 
对于爬虫爬取到的文章存储到数据库时,有时需要到文档发布的时间进行处理。此时要用到datetime将时间精确到某一个单位。
# conding=utf8
from datetime import datetime, timedelta
import time
a = datetime.now()
print(a.strftime("%Y-%m-%d %H:%M:%S"))  # 获取当前时间精确到秒数
# 2018-01-28 23:33:18
print(a.strftime("%Y-%m-%d %H:%M"))  # 获取当前时间精确到分钟
# 2018-01-28 23:33
print(a.strftime("%Y-%m-%d %H"))  # 获取当前时间精确到小时
# 2018-01-28 23
print(a.strftime("%Y-%m-%d"))  # 获取当前时间精确带天
# 2018-01-28
print((a - timedelta(seconds=5)).strftime("%Y-%m-%d %H:%M:%S"))
# 2018-01-28 23:36:39
print((a - timedelta(minutes=5)).strftime("%Y-%m-%d %H:%M"))
# 2018-01-28 23:28
print((a - timedelta(hours=5)).strftime("%Y-%m-%d %H"))
# 2018-01-28 18
print((a - timedelta(days=5)).strftime("%Y-%m-%d"))
# 2018-01-23