- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的生成器函数代码:
def fibo():
n1=0
n2=1
while True:
if n1 == 8:
raise StopIteration
else:
yield n1
n1,n2=n2,n1+n2
seq=fibo()
这是我用于生成序列的代码版本 1:
for ele in seq:
print(next(seq))
输出:
1
2
5
RuntimeError: generator raised StopIteration
---------------------------------------------------------------------------
StopIteration Traceback (most recent call last)
<ipython-input-3-c01815b93e23> in fibo()
5 if n1 == 8:
----> 6 raise StopIteration
7 else:
StopIteration:
The above exception was the direct cause of the following exception:
RuntimeError Traceback (most recent call last)
<ipython-input-3-c01815b93e23> in <module>
11 seq=fibo()
12
---> 13 for ele in seq:
14 print(next(seq))
15
RuntimeError: generator raised StopIteration
版本 1 的预期输出:
0
1
1
2
3
5
这是我用于生成序列的代码版本 2:
while True:
try:
print(next(seq))
except StopIteration:
print('This exception is raised in the generator operation defining function. Hence it is handled here.')
break
输出:
0
1
1
2
3
5
RuntimeError: generator raised StopIteration
---------------------------------------------------------------------------
StopIteration Traceback (most recent call last)
<ipython-input-4-6afe26583a33> in fibo()
5 if n1 == 8:
----> 6 raise StopIteration
7 else:
StopIteration:
The above exception was the direct cause of the following exception:
RuntimeError Traceback (most recent call last)
<ipython-input-4-6afe26583a33> in <module>
16 while True:
17 try:
---> 18 print(next(seq))
19 except StopIteration:
20 print('This exception is raised in the generator operation defining function. Hence it is handled here.')
RuntimeError: generator raised StopIteration
版本 2 的预期输出:
0
1
1
2
3
5
This exception is raised in the generator operation defining function. Hence it is handled here.
在第一个版本中,out不正确,出现异常。在第二个中,除了正确的输出之外,还发生了与版本 1 相同的异常。请帮我改正。
最佳答案
Here is my code version-1 for generating sequence:
点 for
Python 中的循环构造是它已经调用next
在迭代器上(它从生成器自动创建)。所以你应该只print(ele)
相反。
RuntimeError: generator raised StopIteration
是的,因为你不应该使用明确的 raise StopIteration
在发电机中。这是一个用于与 for
通信的旧工具。循环你没有元素,这只有在你实现 __iter__
时才需要方法老办法。是的,for
循环构造依赖于此异常来确定输入的结束;但是从您的生成器创建的迭代器会自动执行此操作 - 并检查 StopIteration
s 在生成器中生成并将它们转换为 RuntimeError
,明确防止你的StopIteration
免于跳出循环。
如果底层机器没有那个检查,那么你可以做类似 for i in itertools.chain(my_generator, a_list):
的事情,并且生成器实现引发的异常将强行中断循环(毕竟,循环通过处理该异常退出)并阻止a_list
被看见的元素。这不是您希望生成器的行为方式,而且在某种意义上它也是一种安全风险,因此存在检查。
如果你想发出信号表明发电机已完成 yield
ing,你所做的是......到达代码的末尾。例如,使用 return
,或者在本例中为 break
也有效(因为循环后没有其他内容):
def fibo():
n1, n2 = 0, 1
while True:
if n1 == 8:
break
else:
yield n1
n1, n2 = n2, n1+n2
print('This exception is raised in the generator operation defining function. Hence it is handled here.')
没有发生的原因是你试图捕捉 StopIteration
(你不应该这样做,因为它会干扰循环的操作!),但异常是(如果你仔细阅读堆栈跟踪,你就会知道)替换为 RuntimeError
反而。见上文。
使用上面更正的代码,一切都按预期工作:
>>> list(fibo())
[0, 1, 1, 2, 3, 5]
>>> x = fibo()
>>> for f in x:
... print(f)
...
0
1
1
2
3
5
>>> x = fibo()
>>> while True:
... try:
... print(next(x))
... except StopIteration:
... print('this works as intended - but a for loop is much cleaner')
... break
...
0
1
1
2
3
5
this works as intended - but a for loop is much cleaner
关于python - python 生成器函数中引发的 StopIteration 异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69037993/
我正在使用 SharePoint Online 并使用 Windows Azure 托管访问 SPO 的进程。 我们已将启动任务添加到 Azure 角色以安装 http://www.microsoft
我有一个函数,它获取包含时间的源文件(csv 文件),读取它,然后按顺序对行进行排序并将它们写入目标文件中。但是,如果源 csv 文件不存在,我需要引发 FileNotFoundError。我之前曾引
我试图在目录不存在时引发错误,然后再打开该目录中的文件。根据this response我应该为我的问题使用最具体的异常构造函数,我认为它是 NotADirectoryError。但是运行下面的代码我得
在编码/开发生命的一天或另一天,我们确实遇到了这个特殊的情况,这是最常见的异常(exception)之一。我的问题是关于的而不是。为什么(我知道当我们尝试访问实际上指向null的引用变量的属性时会引发
我想知道在 python 中是否可以在一个 except block 中引发异常并在稍后的 except block 中捕获它。我相信其他一些语言默认会这样做。 这是它的样子" try: som
我有以下代码: br = mechanize.Browser() br._factory.is_html = True br.form = mechanize._form.ParseString(''
我刚刚发现,如果您有一个引发 TOO_MANY_ROWS 异常的 SELECT INTO,该变量仍会从查询检索到的第一条记录中分配值。这是预期的行为吗? 这是我的例子: for co in my_cu
当 SSH 显示 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! 我知道当您重新安装远程服务器时会发生这种情况,但我尝试列出 其他原因 . 我知道如何
我有一个枚举和一个 EnumMap . 我将 map 放入一个类中以隐藏“字节”值。所以我有一个set(Parameter, int)和set(Parameter, boolean)方法。 publi
在什么情况下会redis-py引发以下 AttributeError 异常? redis-py 不是设计来引发仅基于 redis.exceptions.RedisError 的异常吗? 什么是合理的处
可悲的是,对此异常的引用通常具有异国情调,并且可能发生在您例如通过 Assembly.GetTypes() 枚举类型- 举个例子,它发生在我们的一个部署上,但同一组程序集在集成服务器上运行良好。 为了
我正在为 Android 下的特定平板电脑克隆一个存储库并获取源代码,我必须执行一个 python 脚本。当我执行它时,我收到此错误消息: Traceback (most recent call la
首先,执行此操作(在运行 4.4.2 的 Nexus 5 上测试): 将 PRIORITY_LOW 通知传递给 Service.startForeground()。 观察通知不显示在状态栏中。 使用相
我尝试使用 AppEngine 的 python 模块 api 来获取使用基本缩放的模块的实例数。在我模块的 yaml 文件中,我明确设置了 max_instances 参数。我希望 get_num_
当我如下运行我的 spark python 代码时: import pyspark conf = (pyspark.SparkConf() .setMaster("local")
在我的系统上,一段适用于 Python 2 的代码不适用于 Python 3。 f = open("plotwidget.svg") svgData = f.read() xml_stream = Q
我是 PHP 和 SQL 的新手,但我正在创建一个登录系统。我遇到的问题是: You have an error in your SQL syntax; check the manual that c
我有一个使用 ebaysdk 库的 python 代码,当我运行代码并输入关键字进行搜索时,我得到了这个错误。 Traceback (most recent call last): File "eba
当我将表单数据发送到我的 Flask 应用程序时,出现以下错误。它说它将使用 UTF-8 编码,但语言环境已经是 UTF-8。这个错误是什么意思? /home/.virtualenvs/project
在python2.7中,跟随pympler example : from anotherfile import somefunction, somecustomclass from os import
我是一名优秀的程序员,十分优秀!