博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 魔术方法
阅读量:5264 次
发布时间:2019-06-14

本文共 1624 字,大约阅读时间需要 5 分钟。

import timefunc_count_time_dict = {}def count_time(func):    global func_count_time_dict    func_count_time_dict[func]=[1,time.localtime()]    def wrapper():        global func_count_time_dict        func()        print 'func name: ',func.__name__        print 'count: ',func_count_time_dict[func][0]        print 'last call time: ',time.asctime(func_count_time_dict[func][1])                func_count_time_dict[func][0]+=1        func_count_time_dict[func][1]=time.localtime()        return wrapper@count_timedef foo():    print 'in foo()' @count_timedef foo_1():    print 'in foo_1'foo_1()foo_1()foo_1()    foo()foo_1()foo()foo()foo_1()

 

class MyIterator(object):      def __init__(self, data_iter):          self.data_iter = data_iter          self.start = 0      def __iter__(self):          return self        def next(self):            print self.start        if self.start >= len(self.data_iter):              raise StopIteration          ans = self.data_iter[self.start]        self.start += 1        return ans        if __name__ == "__main__":      iter = MyIterator(range(10))      for i in iter:          print i

 

def fib(max):      a, b = 0, 1                while a < max:          yield a                    a, b = b, a + b          for i in fib(1000):      print(i)

 

map_output = map(lambda x: 2 * x, range(10))print map_outputprint map(lambda x, y : x + y, range(8), range(8)) reduce_output = reduce(lambda x, y:x * y, range(1, 10))##pep8?print reduce_outputm=lambda x,y:x>yprint m(1,5)filter_output = filter(lambda x:x % 2,  range(1, 10))print filter_output

 

转载于:https://www.cnblogs.com/tjsudys/p/4660078.html

你可能感兴趣的文章
FancyCoverFlow
查看>>
JS博客
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
ASP.NET WebApi 基于OAuth2.0实现Token签名认证
查看>>
283. Move Zeroes把零放在最后面
查看>>
Visual Studio Code 打开.py代码报Linter pylint is not installed解决办法
查看>>
Python 数据类型
查看>>
S5PV210根文件系统的制作(一)
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
数据清洗
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【转】代码中特殊的注释技术——TODO、FIXME和XXX的用处
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>