python 核心編程第十一章 13題

來源:互聯網
上載者:User

分別用不同的方法去實現階乘,並且用裝飾器去計算不同的階乘的時間,實現很簡單,就是裝飾器那裡有點模糊,裝飾函數裡面一定要返回裝飾器內嵌函數的函數對象。還ti有一點就是time.clock()和time.time()表示什麼,C裡面clock表示cpu的時鐘數,然後通過CLOCKS_PER_SEC計算時間,而python裡面貌似沒有這麼個data,clock表示什麼呢,不懂,求解。。

#!/usr/bin/pythonimport timedef mul(x,y):return x*ydef timeit(func):def counter(*data):start = time.time()result = func(*data)end = time.time()print '-'*20print 'result is %d' % result print "function %s consuming time is %f\n" %(func.__name__,end -start)return resultreturn counter@timeitdef jiecheng_01(n):return reduce(mul,range(1,n+1))@timeitdef jiecheng_02(n):return reduce(lambda x,y:x*y ,range(1,n+1))@timeitdef jiecheng_03(n):if n==1:return 1else:return n*jiecheng_03(n-1)if __name__ == '__main__':funcs = [jiecheng_01,jiecheng_02,jiecheng_03]for func  in funcs:func(30)
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.