• python获取当前,昨天,明天时间


    import datetime
    nowTime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')#现在
    pastTimeMinutes = (datetime.datetime.now()+datetime.timedelta(minutes=5)).strftime('%Y-%m-%d %H:%M:%S')#5分钟后
    pastTime = (datetime.datetime.now()-datetime.timedelta(hours=1)).strftime('%Y-%m-%d %H:%M:%S')#一小时前
    afterTomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=2)).strftime('%Y-%m-%d %H:%M:%S')#后天
    yesterday = (datetime.datetime.now()-datetime.timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')#昨天
    tomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')#明天
    # print('
    ',nowTime,'
    ',pastTimeMinutes,'
    ',pastTime,'
    ',afterTomorrowTime,'
    ',tomorrowTime)
    print("现在:    "+nowTime)
    print("5分钟后: "+pastTimeMinutes)
    print("一小时前: "+pastTime)
    print("后天:    "+afterTomorrowTime)
    print("昨天:    "+yesterday)
    print("明天:    "+tomorrowTime)
    import datetime
    nowTime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')#现在
    pastTimeMinutes = (datetime.datetime.now()+datetime.timedelta(minutes=5)).strftime('%Y-%m-%d %H:%M:%S')#5分钟后
    pastTime = (datetime.datetime.now()-datetime.timedelta(hours=1)).strftime('%Y-%m-%d %H:%M:%S')#一小时前
    afterTomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=2)).strftime('%Y-%m-%d %H:%M:%S')#后天
    yesterday = (datetime.datetime.now()-datetime.timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')#昨天
    tomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')#明天
    # print('
    ',nowTime,'
    ',pastTimeMinutes,'
    ',pastTime,'
    ',afterTomorrowTime,'
    ',tomorrowTime)
    print("现在:    "+nowTime)
    print("5分钟后: "+pastTimeMinutes)
    print("一小时前: "+pastTime)
    print("后天:    "+afterTomorrowTime)
    print("昨天:    "+yesterday)
    print("明天:    "+tomorrowTime)

    总结:

    +datetime.timedelta(minutes=5)     加5分钟也就是5分钟之后的时间
    -datetime.timedelta(days=1)        减1天时间也就是1天前的时间  


  • 相关阅读:
    在 Asp.NET MVC 中使用 SignalR 实现推送功能
    开发高效的Tag标签系统数据库设计
    【译】ASP.NET MVC 5 官方教程
    介绍 ASP.NET Identity
    iOS使用UIWebView遇到Error Domain=WebKitErrorDomain Code=101 “The operation couldn’t be completed. (WebKitErrorDomain error 101
    浏览器是怎样工作的:渲染引擎,HTML解析
    堆 和 栈的 区别(经典)
    Javascript的堆和栈的简单理解
    页面呈现、重绘、回流。
    什么是 dynaTrace Ajax
  • 原文地址:https://www.cnblogs.com/111testing/p/10424933.html
Copyright © 2020-2023  润新知