Python函数名称…未定义

Python function name … is not defined

我在做一些python web内容请求,我想在代码中做一些函数,但是有一个错误,我不知道为什么会出现这个错误。我的代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
def tempRequest(tree, heading):

    page = requests.get("http://10.0.0.3/admin/speedtest.php")
    tree = html.fromstring(page.content)
    heading = tree.xpath('//a[@id="temperature"]/text()')
    return heading, tree

    tempRequest(tree, heading)
    heading = tree.xpath('//a[@id="temperature"]/text()')

    sheet = client.open("Database").sheet1

    sheet.insert_row(heading, 10)
    time.sleep(5)

tempRequest(tree, heading) NameError: name 'tree' is not defined

你们能帮帮我吗?谢谢。


您的代码中有一些基本错误,应该是这样的:

1
2
3
4
5
6
7
8
9
10
11
def tempRequest():
    page = requests.get("http://10.0.0.3/admin/speedtest.php")
    tree = html.fromstring(page.content)
    heading = tree.xpath('//a[@id="temperature"]/text()')
    return heading, tree

heading, tree = tempRequest()
sheet = client.open("Database").sheet1

sheet.insert_row(heading, 10)
time.sleep(5)

在原始代码中,您试图在代码中定义变量之前将变量传递给函数。你根本不用函数返回值。