问题描述
我的 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",)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)