我的Python程序中有这个功能:
@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("\n"):
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
是一个发电机。但我会将值变量返回给调用该函数的处理程序。这可能吗?我该怎么办?
答案 0 :(得分:35)
您不能将return
与值一起使用以退出Python 2或Python 3.0 - 3.2中的生成器。您需要使用yield
加return
而不使用表达式:
if response.error:
self.error("Error while retrieving the status")
self.finish()
yield error
return
在循环中,再次使用yield
:
for line in response.body.split("\n"):
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
替代方案是提出异常或改为使用龙卷风回调。
在Python 3.3及更高版本中,return
在生成器函数中具有值会导致值附加到StopIterator
异常。对于async def
异步生成器(Python 3.6及更高版本),return
必须仍然是无值的。