time模块的perf_counter,process_time方法
perf_counter()方法我看得出来是t1和t2中间相隔7s左右,但是process_time()我没看懂是什么意思,t3和t4中间只隔了不到1s的意思吗? https://blog.csdn.net/qq_27283619/article/details/89280974 zltzlt 发表于 2020-8-9 20:19https://blog.csdn.net/qq_27283619/article/details/89280974
{time.process_time()方法
返回当前进程的系统和用户CPU时间总和的值}
没看懂是什么意思,这个方法是在什么需求下使用的呢? Monsterccc 发表于 2020-8-9 20:26
{time.process_time()方法
返回当前进程的系统和用户CPU时间总和的值}
没看懂是什么意思,这个方法是在 ...
感觉一般都不会用到,一般用 perf_counter() 或 time() zltzlt 发表于 2020-8-9 20:31
感觉一般都不会用到,一般用 perf_counter() 或 time()
{题目:改进我们课堂中的例子,这次使用 perf_counter() 和 process_time() 作为计时器。另外增加一个 set_timer() 方法,用于设置默认计时器(默认是 perf_counter(),可以通过此方法修改为 process_time())。}
课后作业44里的,process_time()怎么做计时器呀?我试了一下,中间隔了挺长时间的,最后只运行了不到1s。。。
页:
[1]