Python SyntaxError: (quot;#39;return#39; with argument inside generatorquot;,)(Python SyntaxError: (return with argument inside generator,))
问题描述
我的 Python 程序中有这个函数:
I have this function in my Python program:
@tornado.gen.engine
def check_status_changes(netid, sensid):
como_url = "".join(['http://131.114.52:44444/ztc?netid=', str(netid), '&sensid=', str(sensid), '&start=-5s&end=-1s'])
http_client = AsyncHTTPClient()
response = yield tornado.gen.Task(http_client.fetch, como_url)
if response.error:
self.error("Error while retrieving the status")
self.finish()
return error
for line in response.body.split("
"):
if line != "":
#net = int(line.split(" ")[1])
#sens = int(line.split(" ")[2])
#stype = int(line.split(" ")[3])
value = int(line.split(" ")[4])
print value
return value
我知道
for line in response.body.split
是一个生成器.但我会将 value 变量返回给调用该函数的处理程序.这可能吗?我该怎么办?
is a generator. But I would return the value variable to the handler that called the function. It's this possible? How can I do?
推荐答案
在 Python 2 或 Python 3.0 - 3.2 中,您不能使用带有值的 return 来退出生成器.你需要使用 yield 加上一个 return without 一个表达式:
You cannot use return with a value to exit a generator in Python 2, or Python 3.0 - 3.2. You need to use yield plus a return without an expression:
if response.error:
self.error("Error while retrieving the status")
self.finish()
yield error
return
在循环本身中,再次使用 yield:
In the loop itself, use yield again:
for line in response.body.split("
"):
if line != "":
#net = int(line.split(" ")[1])
#sens = int(line.split(" ")[2])
#stype = int(line.split(" ")[3])
value = int(line.split(" ")[4])
print value
yield value
return
替代方案是引发异常或使用龙卷风回调.
Alternatives are to raise an exception or to use tornado callbacks instead.
在 Python 3.3 和更高版本中,生成器函数中带有值的 return 会导致将该值附加到 StopIterator 异常.对于 async def 异步生成器(Python 3.6 及更高版本),return 仍然必须是无值的.
In Python 3.3 and newer, return with a value in a generator function results in the value being attached to the StopIterator exception. For async def asynchronous generators (Python 3.6 and up), return must still be value-less.
这篇关于Python SyntaxError: ("'return' with argument inside generator",)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python SyntaxError: ("'return' with argument inside generator",)
基础教程推荐
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
