zoukankan      html  css  js  c++  java
  • time库

    import time
    time.(b)
     
    三类
      时间获取  time() 当前时间戳 ctime() 当前时间易读 gmtime() 当前时间计算机识别
      时间格式化  strftime()  strptime()  将字符串->时间
      程序计时  sleep()    perf_counter()
     
     
    strftime(tpl,ts) tpl 格式化模板=>%Y  年份    %b  月份缩写
                  %m  月份 %b日期
                  %B  月份全称 %A星期全称
                  %H  24小时制 %a星期缩写
                  %l  12小时制 %P上下午
                  %M  分钟 %S秒
            ts   gmtime()格式
    per_counter() 精准  cpu级别
      测量时间 起点不准确 连续调用计算插值
    产生时间sleep(s) s秒
      '%H%M',time.localtime(time.time()) 可获得系统时间

  • 相关阅读:
    分布式和集群
    c++ >>
    c++ ip地址相关
    c++ ip地址的操作 c版
    c++ 缺少动态库
    c++ dirname() basename()
    shell ulimit -n
    shell 进程查询相关的命令
    shell grep 高亮
    c++ swap 函数
  • 原文地址:https://www.cnblogs.com/renxiaoyan/p/9848951.html
Copyright © 2011-2022 走看看