當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。