码迷,mamicode.com
首页 > 编程语言 > 详细

Python_性能测试

时间:2017-06-19 18:42:56      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:log   port   profile   color   性能测试   profiler   mem   prime   安装   

使用pip安装Python扩展库memory_profiler

 1 from memory_profiler import profile
 2 
 3 @profile    #修饰器
 4 def isPrime(n):
 5     if n == 2:
 6         return True
 7     for i in range(2,int(n**0.5)+2):
 8         if n%i == 0:
 9             return False
10     return True
11 
12 isPrime(99999999999999999999999999999999)
13 
14 
15 ‘‘‘
16 Line #    Mem usage    Increment   Line Contents
17 ================================================
18      3     10.9 MiB      0.0 MiB   @profile    #修饰器
19      4                             def isPrime(n):
20      5     10.9 MiB      0.0 MiB       if n == 2:
21      6                                     return True
22      7     10.9 MiB      0.0 MiB       for i in range(2,int(n**0.5)+2):
23      8     10.9 MiB      0.0 MiB           if n%i == 0:
24      9     10.9 MiB      0.0 MiB               return False
25     10                                 return True
26 ‘‘‘

 

Python_性能测试

标签:log   port   profile   color   性能测试   profiler   mem   prime   安装   

原文地址:http://www.cnblogs.com/cmnz/p/7049766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!