python 异常处理 StopIteration 用来作为迭代器的输出停止/next()

python 异常处理 StopIteration

  • 有StopIteration的情况
  • 没有StopIteration的情况
  • 在next()中增加第二个参数
  • 执行一次next()输出多少个元素:一个
    • ==case one 以迭代器的形式==
    • ==case two 以列表形式作为输入: 不可以==
    • ==case three 以元组形式作为输入: 不可以==
    • ==case four : 利用iter + for 可以==
    • ==case five: (name for name in a)的数据类型到底是什么?:generator==

有StopIteration的情况

it = iter([1,2,3,4,5])
while True:
	try:
		#获取下一个值
		x = next(it)
		print(x)
	except StopIteration:
		#遇到StopIteration就退出循环
		break

python 异常处理 StopIteration 用来作为迭代器的输出停止/next()_第1张图片
这里退出while循环后还可以继续往下执行代码

没有StopIteration的情况

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

	#获取下一个值
	x = next(it)
	print(x)
	# except StopIteration:
	# 	#遇到StopIteration就退出循环
	# 	break

python 异常处理 StopIteration 用来作为迭代器的输出停止/next()_第2张图片
这里Traceback后就不能往下执行代码了

在next()中增加第二个参数

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

	#获取下一个值
	x = next(it,None)
	print(x)
	if x == None:
		break
# 	# except StopIteration:
# 	# 	#遇到StopIteration就退出循环
# 	# 	break
print("hahahaha")

python 异常处理 StopIteration 用来作为迭代器的输出停止/next()_第3张图片

执行一次next()输出多少个元素:一个

case one 以迭代器的形式

it = iter([1,2,3,4,5]) # 以迭代器的形式
print(next(it,None))

在这里插入图片描述

case two 以列表形式作为输入: 不可以

it = [2,1,3,4,5]
print(next(it,None))

python 异常处理 StopIteration 用来作为迭代器的输出停止/next()_第4张图片

case three 以元组形式作为输入: 不可以

it = (1,2,3,4,5)
print(next(it,None))

python 异常处理 StopIteration 用来作为迭代器的输出停止/next()_第5张图片

case four : 利用iter + for 可以

it = iter([1,2,3,4,5])
a = next((name for name in it),None)
print(a)

在这里插入图片描述

case five: (name for name in a)的数据类型到底是什么?:generator

a = [1,2,3,4,5]
b = [4,5,6,7,8]
print(name for name in a if name not in b)
c = (name for name in a if name not in b)
print("the type of c:",type(c))
print("the output of next() function:",next(c,None))

在这里插入图片描述

你可能感兴趣的:(python,#,异常处理)