Python SyntaxError: ("'return' with argument in

2023-09-02Python开发问题
103

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

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10

按10分钟间隔对 pandas 数据帧进行分组
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)...
2024-08-22 Python开发问题
11