ในบทช่วยสอนนี้ เราจะเรียนรู้เกี่ยวกับ time.perf_counter() วิธีการ
เมธอด time.perf_counter() ส่งกลับค่าทศนิยมของเวลาเป็นวินาที มาดูกันว่า
ตัวอย่าง
# importing the time module import time # printing the time print(time.perf_counter())
ผลลัพธ์
หากคุณเรียกใช้โค้ดด้านบน คุณจะได้ผลลัพธ์ดังต่อไปนี้
263.3530349
เราสามารถใช้ time.perf_counter() วิธีหาเวลาทำงานของโปรแกรม มาดูตัวอย่างกัน
ตัวอย่าง
# importing the time module import time # program to find the prime number def is_prime(number): for i in range(2, number): if number % i == 0: return False return True if __name__ == '__main__': number = 17377 start_time = time.perf_counter() is_prime(number) end_time = time.perf_counter() # printing the executing time by difference print(end_time - start_time)
ผลลัพธ์
หากคุณรันโปรแกรมข้างต้น คุณจะได้ผลลัพธ์ดังต่อไปนี้
0.004171799999994619
บทสรุป
หากคุณมีข้อสงสัยใดๆ ในบทแนะนำ โปรดระบุในส่วนความคิดเห็น