2018年1月9日 星期二

Python: Get execution time

Python: Get execution time

Python Basic: Exercise-57 with Solution

Write a program to get execution time (in seconds) for a Python method.
Sample Solution:-
import time
def sum_of_n_numbers(n):
    start_time = time.time()
    s = 0
    for i in range(1,n+1):
        s = s + i
    end_time = time.time()
    return s,end_time-start_time

n = 5
print("\nTime to sum of 1 to ",n," and required time to calculate is :",sum_of_n_numbers(n))

========== RESTART: F:/Python_APSC/py-ex-basic-57.py ==========

Time to sum of 1 to  5  and required time to calculate is : (15, 0.0)
>>> 

沒有留言:

張貼留言

MQTT WS HMI 與 Wokwi ESP32 連線的資訊透過HiveMQ

MQTT WS HMI 與 Wokwi ESP32 連線的資訊透過HiveMQ     https://console.hivemq.cloud/clusters 當您進入 HiveMQ Cloud Console 的 Clusters 頁面時,您的目標是取得能讓 MQTT W...