- 博客(2)
- 收藏
- 关注
原创 python-代码自定义迭代器
自定义可迭代对象 class Studentlist(object): def init(self): self.list_item = [] def append_item(self,name): self.list_item.append(name) def func(self): #获取Studentlist对象的迭代器 stu_iter = iter(stu) print(next(stu...
2019-01-06 20:05:17 243
转载 python--四大函数功能及用法
map() 功能:将第一个参数 function 依次作用在参数可迭代对象中的每一个元素上,返回包含每次 function 函数返回值的新迭代器 map(function, iterable, …) function – 函数,有两个参数 iterable – 一个或多个可迭代对象(如:序列) 返回值:Python 3.x 返回迭代器 reduce() 功能:函数将一个数据集合(链表,元组等)中...
2019-01-06 19:22:40 656
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人