gpt4 book ai didi

python - 在 python 函数中使用全局变量

转载 作者:太空宇宙 更新时间:2023-11-03 14:25:10 25 4
gpt4 key购买 nike

在这段代码中:

def taylorVazquez(fx,a,b,n,puntos):

puntosX = linspace(a,b,num=puntos)
aproxY = []
puntosY = []

def toFloat():
puntosX = [float(x) for x in puntosX]
aproxY = [float(y) for y in aproxY]
puntosY = [float(y) for y in puntosY]

我收到错误消息:

UnboundLocalError: local variable 'puntosX' referenced before assignment

所以我知道其他两个变量也会发生同样的情况。我能做的是外部 taylorVazquez 的变量,我在内部函数中操作的变量,换句话说,我希望赋值也适用于外部范围

最佳答案

每当您在给定范围内为变量赋值时,该变量都被假定为该范围内的本地变量。根据您使用的 Python,您需要使用非本地 (Python 3) 或使用参数传递值 (Python 2)。

这是Python 2:

def toFloat(puntosX, aproxY, puntosY):  # now the names of the enclosing function can be passed to the toFloat function
puntosX = [float(x) for x in puntosX]
aproxY = [float(y) for y in aproxY]
puntosY = [float(y) for y in puntosY]

Python 3 中:

def toFloat():
nonlocal puntosX, aproxY, puntosY # the names now refer to the enclosing scope rather than the local scope
puntosX = [float(x) for x in puntosX]
aproxY = [float(y) for y in aproxY]
puntosY = [float(y) for y in puntosY]

global在这种情况下工作,因为您引用的是封闭函数的名称。

还有一件事,您可能正在尝试为封闭范围内的名称分配新值。你目前的策略不会奏效,因为你在最里面的函数中将新对象分配给这些名称。 (列表理解创建新列表。)如果您需要保留新值,您将需要(例如)将这些值返回到封闭范围并将您的原始名称重新分配给新值。例如,在 Python 2 中:

def taylorVazquez(fx,a,b,n,puntos):
puntosX = linspace(a,b,num=puntos)
aproxY = []
puntosY = []

def toFloat(puntosX, aproxY, puntosY): # now the names of the enclosing function can be passed to the toFloat function
puntosX = [float(x) for x in puntosX]
aproxY = [float(y) for y in aproxY]
puntosY = [float(y) for y in puntosY]
return puntosX, aproxY, puntosY

puntosX, aproxY, puntosY = toFloat(puntosX, aproxY, puntosY) # now you can reassign these names to the new values

global 不同,您不能为这些名称分配新值并让它们保留在封闭范围内。

关于python - 在 python 函数中使用全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21819534/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com