摘要: 回顾: 凡是可作用于for循环的对象都是Iterable类型; 凡是可作用于next()函数的对象都是Iterator类型,他们表示一个惰性计算的序列; 集合数据类型,如:list、dict、str等都是Iterable但不是Iterator,不过可以通过iter()函数获得一个Iterator对象 阅读全文
posted @ 2020-09-22 10:43 龚志军Flagon 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 装饰器3decorator:包含参数传递 1 user, passwd = "Flagon", "123" 2 3 4 def auth(auth_type): 5 print('auth func:', auth_type) 6 def outer_wrapper(func): 7 def wra 阅读全文
posted @ 2020-09-22 10:35 龚志军Flagon 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 装饰器decorator复习,传递参数: 1 import time 2 3 def timer(argv): 4 def out_wraper(func): 5 def wraper(a, b): 6 print('In the %s' % func) 7 start_time = time.ti 阅读全文
posted @ 2020-09-22 10:02 龚志军Flagon 阅读(71) 评论(0) 推荐(0) 编辑