gpt4 book ai didi

python - 无法访问更新后的全局变量的值

转载 作者:行者123 更新时间:2023-12-03 20:01:42 24 4
gpt4 key购买 nike

假设我有两个 Python 文件:

  • abc.py :

  • from .config import *
    update_a()
    print_a() # prints 5
    print(a) # prints 2 rather than 5 even after calling update_a() and using global in update_a()
  • config.py :

  • a = 2

    def update_a():
    global a
    a = 5

    def print_a():
    global a
    print(a) # prints 5
    config.py 中的全局变量从 abc.py 访问时似乎没有更新的值.

    最佳答案

    当你进行导入时说 from .config import * , 变量 a作为本地范围导入。对 a 的任何修改将在abc.py 的范围内发生不在 config.py 中而对 update_a() 的调用和 print_a()正在修改变量 aconfig.py

    关于python - 无法访问更新后的全局变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65914099/

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