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)
>>> 

沒有留言:

張貼留言

OPEN DATA AQI 空氣品質監測網 + NODE-RED

OPEN DATA AQI 空氣品質監測網 + NODE-RED  首頁 - 空氣品質監測網  https://airtw.moenv.gov.tw/ https://data.gov.tw/datasets/search?p=1&size=10&s=_score...