python:practice decorator calaulate_time

Posted alansuny

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:practice decorator calaulate_time相关的知识,希望对你有一定的参考价值。

from functools import reduce

import time

def  factorial_array(n)

    number=reduce(lambda x,y:x*y,range(1,n+1))

    return number

print( factorial_array(101)

def calaulate_time(func):

    start_time=time.time()

   func()

   end_time=time.time()

return end_time-start_time

print(calaulate_time(factorate_array(101))

 

以上是关于python:practice decorator calaulate_time的主要内容,如果未能解决你的问题,请参考以下文章

python:practice renderer

python python_practice

python python_practice

python :practice function return

python: practice recurse function

python:practice built-in function