当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python time.thread_time_ns()用法及代码示例


Python time.thread_time_ns()函数用于返回当前线程的系统和用户CPU时间之和的值。它类似于 time.thread_time() 函数。区别在于 thread_time() 函数返回 CPU 的秒数(计算机时间),而 thread_time_ns() 函数返回 CPU 的纳秒(计算机时间)

用法:

time.thread_time_ns()

返回:

计算机时间的纳秒

范例1:使用 thread_time_ns() 函数的 Python 程序



Python3


# import time module
import time
  
# thread_time_ns() demo
print(time.thread_time_ns())

输出

3633875824

例子2:通过休眠几秒钟来演示 thread_time_ns() 函数的 Python 程序

Python3


# import time module
import time
  
# thread_time_ns() demo
print(time.thread_time_ns())
  
# sleep for 10 seconds
time.sleep(10)
  
# thread_time_ns() demo
print(time.thread_time_ns())
  
# sleep for 2 seconds
time.sleep(2)
  
# thread_time_ns() demo
print(time.thread_time_ns())
# sleep for 2 seconds
time.sleep(2)
  
# thread_time_ns() demo
print(time.thread_time_ns())

输出:

3616352715
3616782418
3617173584
3617551725




相关用法


注:本文由纯净天空筛选整理自ojaswilavu8128大神的英文原创作品 Python time.thread_time_ns() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。