将Python函数中的所有变量设为全局变量



有没有一种简单的方法可以使函数中的所有变量全局化?

我在一个函数中有20个奇怪的变量,一个接一个地将它们命名为全局变量不会产生好的代码。。。对我来说:)

警告:不要在家里尝试,你可能会把它烧掉

在正常的日常编程过程中,没有正当的理由进行以下操作。请查看此问题的其他答案,以获得更现实的替代方案。

我几乎无法想象你为什么要这样做,但这里有一种方法:

def f(a, b, c):
    d = 123
    e = 'crazy, but possible'
    globals().update(locals())
def g():
    print a, b, c, d ,e
>>> globals()
{'g': <function g at 0x875230>, 'f': <function f at 0x8751b8>, '__builtins__': <module '__builtin__' (built-in)>, '__package__': None, '__name__': '__main__', '__doc__': None}
>>> g()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 2, in g
NameError: global name 'a' is not defined
>>> f(10, 20, 'blah')
>>> g()
10 20 blah 123 crazy, but possible
>>> globals()
{'a': 10, 'c': 'blah', 'b': 20, 'e': 'crazy, but possible', 'd': 123, 'g': <function g at 0x875230>, 'f': <function f at 0x8751b8>, '__builtins__': <module '__builtin__' (built-in)>, '__package__': None, '__name__': '__main__', '__doc__': None}

实现这一点的Python方法是将变量保持在本地范围内(即在每个函数中定义它们),并在函数之间作为参数/返回值传递它们;或者将变量保留为对象或类的属性,从而在该类中生成"函数"方法。无论哪种方式都可以,但global关键字是专门设计的,目的是让你不要按照你描述的方式使用它。全局变量不仅是"糟糕的风格",而且它们使代码很难维护,因为变量需要坚持的任何不变量都需要在每个函数中进行检查。

这里有一个好风格(带功能)的例子:

def quads(a, b, c):
    x1 = (-1.0 * b + math.sqrt(b * b - 4.0 * a * c)) / (2.0 * a)
    x2 = (-1.0 * b - math.sqrt(b * b - 4.0 * a * c)) / (2.0 * a)
    return x1, x2
def pretty(a, b, c, x1, x2):
    eqn = "%fx^2 + %fx + %c" % (a, b, c)
    print "The first solution to the equation %s is: %f" % (eqn, x1)
    print "The second solution to the equation %s is: %f" % (eqn, x2)
    return
def main():
    a = 100
    b = 200
    c = 300
    x1, x2 = quads(a, b, c)
    pretty(a, b, c, x1, x2)
    return
if __name__ == '__main__':
    main()

下面是一个好风格(OOP)的例子:

class Quadratic(object):
    def __init__(self, a, b, c):
        self.a = a
        self.b = b
        self.c = c
        self.x1 = None 
        self.x2 = None 
        self.solve() # Set x1 and x2 to correct values
        # To maintain the invariant between a, b, c and x1, x1
        # we should override __setattr__ or use descriptors or
        # properties so that self.solve() is called every time
        # a, b, or c are updated.
        return
    def solve(self):
        self.x1 = (-1.0 * self.b +
                   math.sqrt(self.b * self.b - 4.0 * self.a * self.c)) / (2.0 * self.a)
        self.x2 = (-1.0 * self.b - 
                   math.sqrt(self.b * self.b - 4.0 * self.a * self.c)) / 2.0 * self.a
        return 
    def pretty(self):
        eqn = "%fx^2 + %fx + %c" % (self.a, self.b, self.c)
        print "The first solution to the equation %s is: %f" % (eqn, self.x1)
        print "The second solution to the equation %s is: %f" % (eqn, self.x2)
        return
def main():
    quad = Quadratic(100, 200, 300)
    quad.pretty()
    return
if __name__ == '__main__':
    main()

没有办法将它们全部声明为全局,而且你真的不想这样做。这20个变量可能应该变成一个具有20个属性的对象。

最简单的解决方案是只有一个全局——或者,更好的是,找出如何将其传递给函数。将其作为全局使用会是这样的(再次,我展示了最简单的情况,不一定是Python的最佳使用):

class Info(object):  # or whatever you want to name the container
    """Holder for global information."""
info = Info()        # single instance we will use
def my_function():
    print "Here is some info:"
    print info.a, info.b, info.c
info.a = 3
info.b = 8
info.c = []
if __name__ == '__main__':
    my_function()

同样,我可能会将info传递给函数。但由于你的问题是关于全球性的,所以这里显示的是全球性的。

我想做的一个利基示例:使用一个函数导入。*

def temp():
    a = "stays local value"
    old_locs = locals().copy()
    b = "is global value"
    import math
    new_locs = locals()
    new_vars = {k: new_locs[k] for k in set(new_locs) - set(old_locs)
                if k != 'old_locs'}
    globals().update(new_vars)    
temp()
print(b)
print(math.sqrt(3))
print(a)

提供
is global value

1.7320508075688772

NameError: name 'a' is not defined

这样,只有特定的20个左右的变量才能更新全局名称空间,而函数中的中间变量名称则不会。

*我需要从.ipnb文件导入,这样做的过程取决于是否从谷歌协作、桌面.ipnb或桌面.py文件调用;这涉及到使用magic,在不调用这些分支的情况下,这些magic被视为无效语法,所以通过导入导入函数,我可以避免这个问题。

相关内容

  • 没有找到相关文章

最新更新