• 技术文章 >Python技术 >Python基础教程

    python mktime()如何计算时间

    小妮浅浅小妮浅浅2021-08-10 09:40:06原创4382

    说明

    为了实现time库的加法运算,有必要将我们输入的日期数据转换为time库可识别的日期数据。

    1、time.mktime()函数可以将数字转换为time库的日期数据,然后进行加法运算。

    注意

    2、time.mktime()函数接受9位元组数据,少1位会出错。

    元组数据的意义分别是年、月、日、时、分、秒、星期几、今年的第几天,是否是夏令时。倒数2、3位数与前一天发生冲突时,time.mktime()函数会自动修正。

    实例

    import time
     
    t = (2021, 2, 17, 17, 3, 38, 1, 48, 0)
    second_time = time.mktime(t)
    struct_time = time.localtime(second_time)
    print(time.strftime("%Y-%m-%d %H:%M:%S", struct_time))
     
    second_time2 = second_time + 500
    struct_time = time.localtime(second_time2)
    print(time.strftime("%Y-%m-%d %H:%M:%S", struct_time))

    以上就是python mktime()计算时间的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python mktime
    上一篇:python strftime获取当前时间 下一篇:python数据模块类如何定义

    相关文章推荐

    • python中time.mktime()的转换• php中mktime()函数是什么• Python unittest有哪些使用方法• python动态规划算法的使用过程• python线程安全的介绍及解决方法• python迭代器协议支持的两种方法• python中chardet库的安装和导入• python chardet库的函数用法• python中使用动量交易策略• python动量交易策略的四个步骤• python time库有哪些时钟• python time.ctime()如何做时间加减法• python strftime获取当前时间

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网