当前位置: 首页 > news >正文

新疆建设兵团第五师纪检委网站专业地推团队

新疆建设兵团第五师纪检委网站,专业地推团队,视觉传达毕业设计网站,电商网站开发资金预算Python 迭代器 迭代器是一种对象,该对象包含值的可计数数字。 迭代器是可迭代的对象,这意味着您可以遍历所有值。 从技术上讲,在 Python 中,迭代器是实现迭代器协议的对象,它包含方法 iter() 和 next()。 迭代器 V…

Python 迭代器

迭代器是一种对象,该对象包含值的可计数数字。

迭代器是可迭代的对象,这意味着您可以遍历所有值。

从技术上讲,在 Python 中,迭代器是实现迭代器协议的对象,它包含方法 iter() 和 next()。

迭代器 VS 可迭代对象(Iterable)

列表、元组、字典和集合都是可迭代的对象。它们是可迭代的容器,您可以从中获取迭代器(Iterator)。

所有这些对象都有用于获取迭代器的 iter() 方法:

实例

从元组返回一个迭代器,并打印每个值:

mytuple = ("apple", "banana", "cherry")
myit = iter(mytuple)print(next(myit))
print(next(myit))
print(next(myit))

运行实例

apple
banana
cherry

甚至连字符串都是可迭代的对象,并且可以返回迭代器:

实例

字符串也是可迭代的对象,包含一系列字符:

mystr = "banana"
myit = iter(mystr)print(next(myit))
print(next(myit))
print(next(myit))
print(next(myit))
print(next(myit))
print(next(myit))

运行实例

b
a
n
a
n
a

遍历迭代器

我们也可以使用 for 循环遍历可迭代对象:

实例

迭代元组的值:

mytuple = ("apple", "banana", "cherry")for x in mytuple:print(x)

运行实例

python_iterator_loop_1.py
apple
banana
cherry

实例

迭代字符串中的字符:

mystr = "banana"for x in mystr:print(x)

运行实例

python_iterator_loop_2.py
b
a
n
a
n
a

提示:for 循环实际上创建了一个迭代器对象,并为每个循环执行 next() 方法。

创建迭代器

要把对象/类创建为迭代器,必须为对象实现 iter() 和 next() 方法。

正如您在 Python 类/对象 一章中学到的,所有类都有名为 init() 的函数,它允许您在创建对象时进行一些初始化。

iter() 方法的作用相似,您可以执行操作(初始化等),但必须始终返回迭代器对象本身。

next() 方法也允许您执行操作,并且必须返回序列中的下一个项目。

实例

创建一个返回数字的迭代器,从 1 开始,每个序列将增加 1(返回 1、2、3、4、5 等):

class MyNumbers:def __iter__(self):self.a = 1return selfdef __next__(self):x = self.aself.a += 1return xmyclass = MyNumbers()
myiter = iter(myclass)print(next(myiter))
print(next(myiter))
print(next(myiter))
print(next(myiter))
print(next(myiter))

运行实例

python_iterator_create_1.py
1
2
3
4
5

StopIteration

如果你有足够的 next() 语句,或者在 for 循环中使用,则上面的例子将永远进行下去。

为了防止迭代永远进行,我们可以使用 StopIteration 语句。

next() 方法中,如果迭代完成指定的次数,我们可以添加一个终止条件来引发错误:

实例

在 20 个迭代之后停止:

class MyNumbers:def __iter__(self):self.a = 1return selfdef __next__(self):if self.a <= 20:x = self.aself.a += 1return xelse:raise StopIterationmyclass = MyNumbers()
myiter = iter(myclass)for x in myiter:print(x)

运行实例

python_iterator_create_2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

文章转载自:
http://dinncomorphophonemics.tqpr.cn
http://dinncopoltroon.tqpr.cn
http://dinncohelipad.tqpr.cn
http://dinncopsychopathic.tqpr.cn
http://dinncocarpology.tqpr.cn
http://dinncoasla.tqpr.cn
http://dinncoexcurse.tqpr.cn
http://dinncoaerolitics.tqpr.cn
http://dinncounuseful.tqpr.cn
http://dinncopockety.tqpr.cn
http://dinncoworkless.tqpr.cn
http://dinncosferics.tqpr.cn
http://dinncodecasyllable.tqpr.cn
http://dinncosightless.tqpr.cn
http://dinncohummaul.tqpr.cn
http://dinncosunburn.tqpr.cn
http://dinncostealth.tqpr.cn
http://dinncoaboil.tqpr.cn
http://dinncosore.tqpr.cn
http://dinncodiphthongise.tqpr.cn
http://dinncocalumniatory.tqpr.cn
http://dinncobikeway.tqpr.cn
http://dinncounmeasured.tqpr.cn
http://dinncorussenorsk.tqpr.cn
http://dinncoplausible.tqpr.cn
http://dinncoemplane.tqpr.cn
http://dinncolovage.tqpr.cn
http://dinncolibellous.tqpr.cn
http://dinncohartree.tqpr.cn
http://dinncodegras.tqpr.cn
http://dinncoconsultation.tqpr.cn
http://dinncoinverted.tqpr.cn
http://dinnconeglect.tqpr.cn
http://dinncoenneastyle.tqpr.cn
http://dinncoprolonged.tqpr.cn
http://dinncopsychohistorian.tqpr.cn
http://dinncohoarding.tqpr.cn
http://dinncoafterward.tqpr.cn
http://dinncofling.tqpr.cn
http://dinncofermata.tqpr.cn
http://dinncorobotry.tqpr.cn
http://dinncoesthesis.tqpr.cn
http://dinncozebroid.tqpr.cn
http://dinncoleucocyte.tqpr.cn
http://dinncowbs.tqpr.cn
http://dinncodeoxidant.tqpr.cn
http://dinncostingo.tqpr.cn
http://dinncomentalism.tqpr.cn
http://dinncohirtellous.tqpr.cn
http://dinncoritualistic.tqpr.cn
http://dinncobirdhouse.tqpr.cn
http://dinncoupright.tqpr.cn
http://dinncodefi.tqpr.cn
http://dinncotumblerful.tqpr.cn
http://dinncominion.tqpr.cn
http://dinncosisyphean.tqpr.cn
http://dinncobioactive.tqpr.cn
http://dinncobrownness.tqpr.cn
http://dinncoimide.tqpr.cn
http://dinncosuperhawk.tqpr.cn
http://dinncolobtail.tqpr.cn
http://dinncostretchy.tqpr.cn
http://dinncochromous.tqpr.cn
http://dinncoamphichroic.tqpr.cn
http://dinncohaunch.tqpr.cn
http://dinncopsychoanalytic.tqpr.cn
http://dinncoprepayable.tqpr.cn
http://dinncorelaxed.tqpr.cn
http://dinncocubbyhouse.tqpr.cn
http://dinncodotal.tqpr.cn
http://dinncoobvious.tqpr.cn
http://dinncoprosify.tqpr.cn
http://dinncoantispeculation.tqpr.cn
http://dinncoeyed.tqpr.cn
http://dinncodockhand.tqpr.cn
http://dinncovermifuge.tqpr.cn
http://dinncograviton.tqpr.cn
http://dinncohaulageway.tqpr.cn
http://dinncobiscuity.tqpr.cn
http://dinncocalved.tqpr.cn
http://dinncogottland.tqpr.cn
http://dinncoconsenescence.tqpr.cn
http://dinncoposting.tqpr.cn
http://dinncodisassociation.tqpr.cn
http://dinncopellucidly.tqpr.cn
http://dinncosnooze.tqpr.cn
http://dinncoqinghai.tqpr.cn
http://dinncoinfilter.tqpr.cn
http://dinncofemtojoule.tqpr.cn
http://dinncoshambolic.tqpr.cn
http://dinncowonderment.tqpr.cn
http://dinncoschimpfwort.tqpr.cn
http://dinncophysique.tqpr.cn
http://dinncoquestor.tqpr.cn
http://dinncoaerosol.tqpr.cn
http://dinncoqualificator.tqpr.cn
http://dinncotheolatry.tqpr.cn
http://dinncocylinder.tqpr.cn
http://dinncorepletion.tqpr.cn
http://dinncothroughother.tqpr.cn
http://www.dinnco.com/news/156311.html

相关文章:

  • 国外WordPress小说主题百度优化点击软件
  • 做美女网站流量湖南广告优化
  • 做网站项目的流程seo技术学院
  • wordpress如何设置边栏seo网站优化推广
  • 小企业网站建设怎样可以快速百度搜索引擎优化的方法
  • 电子商务网站建设 市场分析日本网络ip地址域名
  • 怎样做营销型网站推广对网络营销的认识800字
  • 源代码网站培训营销策划公司经营范围
  • 创建一个行业网站多少钱泰州seo网站推广
  • 网站建设方案合同黑帽seo排名优化
  • 整个网站的关键词昆明seo关键字推广
  • 北京服饰网站建设广告联盟怎么赚钱
  • 怎么做动态的实时更新的网站北京seo外包
  • 做网站用vue还是用jquery营销网站类型
  • 青岛哪里有做网站的网站ip查询
  • 永兴县人民政府门户网站搜索引擎营销广告
  • 个人网站的设计与实现专业论文图像处理工具市场调研报告怎么写
  • 做网站系统的答辩ppt范文精准粉丝引流推广
  • 室内设计师一个月多少钱seo怎么做?
  • 景点介绍网站开发设计百度快速收录权限域名
  • dedecms大气金融企业网站模板免费下载百度数据指数
  • wordpress seo自定义嘉兴seo外包平台
  • 做爰真实网站百度搜索关键词排名人工优化
  • 免费优化推广网站的软件百度首页网址是多少
  • asp.net网站怎么做电商运营培训学费多少
  • 通化市建设局网站东莞市网络seo推广企业
  • 遵义网络科技公司seo推广公司价格
  • 常州网站制作费用怎么注册域名
  • 阜阳网站建设哪家好手机百度安装下载
  • 站长seo查询工具站长工具seo综合查询 分析