美文网首页
记录程序运行时间

记录程序运行时间

作者: Dorrrris | 来源:发表于2019-06-12 09:19 被阅读0次

    参考 https://www.pyget.cn/p/186930

    因为我在写一个分布式系统的作业,要求计算运行时间,我分明在程序里面设置了sleep,从输出来看是挺慢的,但是用

    start_time = time.process_time()
    main()
    run_time = (time.process_time() - start_time)  # 单位:秒
    print("执行时间:", run_time)
    

    这种做法发现是没有包括sleep的时间的。

    相关文章

      网友评论

          本文标题:记录程序运行时间

          本文链接:https://www.haomeiwen.com/subject/qnxkfctx.html