python怎么写迭代函数 python中的迭代法

主机教程 建站分享 2年前 (2022-12-17) 171次浏览

文章摘要:python怎么写迭代函数 python中的迭代法

在python中书写迭代函数的方法 1.next函数 # 首先获得Iterator对象: it = iter( […]

在python中书写迭代函数的方法

1.next函数

# 首先获得Iterator对象:

it = iter([1, 2, 3, 4, 5])

# 循环:

while True:

try:

# 获得下一个值:

x = next(it)

print(x)

except StopIteration:

# 遇到StopIteration就退出循环

break

输出结果为:

1

2

3

4

5

2.iter函数

>>>lst = [1, 2, 3]

>>> for i in iter(lst):

... print(i)

...

1

2

3


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么写迭代函数 python中的迭代法
文章链接:http://www.7966.org/post/14242.html
转载请注明出处

喜欢 (0)