python常用时间的获取

这段代码定义了一系列函数,用于获取当前时间、当前小时、当前日、当前周和当前月,并能计算下一小时、下一日、下一周和下一个月的时间戳。同样,也有函数提供上一小时、昨日、上一周和上一月的时间戳,方便进行时间相关的数据分析和处理。
摘要由CSDN通过智能技术生成

当前

  • 当前时间
def current_time():
    return time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
  • 当前小时
def current_hour():
    return datetime.now().strftime('%Y-%m-%d %H:00:00')
  • 当前日
def current_day():
    return datetime.now().strftime('%Y-%m-%d 00:00:00')
  • 当前周
def current_week():
    now = datetime.now()
    return (now - timedelta(days=now.weekday())).strftime('%Y-%m-%d 00:00:00')
  • 当前月
def current_month():
    now = datetime.now()
    return datetime(now.year, now.month, 1).strftime('%Y-%m-%d 00:00:00')

下一

  • 下一小时
def next_hour():
    return (datetime.now() + timedelta(hours=1)).strftime('%Y-%m-%d %H:00:00')
  • 下一日
def tomorrow():
    return (datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d 00:00:00')
  • 下一周
def next_week():
    now = datetime.now()
    return (now - timedelta(days=now.weekday() - 7)).strftime('%Y-%m-%d 00:00:00')
  • 下一月
def next_month():
    now = datetime.now()
    this_month_end = datetime(now.year, now.month, calendar.monthrange(now.year, now.month)[1])
    next_month_start = this_month_end + timedelta(days=1)
    return datetime(next_month_start.year, next_month_start.month, 1).strftime('%Y-%m-%d 00:00:00')

上一

  • 上一小时
def last_hour():
    return (datetime.now() - timedelta(hours=1)).strftime('%Y-%m-%d %H:00:00')
  • 上一日
def yesterday():
    return (datetime.now() - timedelta(days=1)).strftime('%Y-%m-%d 00:00:00')
  • 上一周
def last_week():
    now = datetime.now()
    return (now - timedelta(days=now.weekday() + 7)).strftime('%Y-%m-%d 00:00:00')
  • 上一月
def last_month():
    now = datetime.now()
    last_month_end = datetime(now.year, now.month, 1) - timedelta(days=1)
    return datetime(last_month_end.year, last_month_end.month, 1).strftime('%Y-%m-%d 00:00:00')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值