Python报错SyntaxError: name ‘xxx‘ is assigned to before global declaration解决方法

错误场景

我在main函数中用global关键字声明了全局变量,希望其他的函数都能调用这个全局变量。

以下为错误代码的示例。

targetDir = ''


def test_function():
    # 在自定义函数中调用全局变量
    filepath = targetDir + '\\output1.csv'
    print(filepath)


def test_function_1():
    # 在自定义函数中调用全局变量
    filepath = targetDir + '\\output2.csv'
    print(filepath)


if __name__ == '__main__':
    # 给全局变量赋值
    global targetDir
    targetDir = 'D:\\Test\\user'
    test_function()
    test_function_1()

报错:SyntaxError: name 'targetDir' is assigned to before global declaration

发生错误的位置是main函数中global targetDir这一行。

解决方法

错误原因是,在main函数不需要添加global关键字来声明全局变量。

因此解决方法是,直接赋值就可以了,函数体外侧的声明也不是必须的。

以下为正确的代码示例。

def test_function():
    filepath = targetDir + '\\output1.csv'
    print(filepath)


def test_function_1():
    filepath = targetDir + '\\output2.csv'
    print(filepath)


if __name__ == '__main__':
    targetDir = 'D:\\Test\\user'
    test_function()
    test_function_1()

问题延申

假设在函数a中定义了一个值,想要在函数b中访问,那么可以在函数a中通过global关键字声明为全局变量。

def test_func_a():
    # 给全局变量赋值
    global targetDir
    targetDir = 'D:\\Test\\user'


def test_func_b():
    # 调用变量targetDir
    filepath = targetDir + '\\outputData.csv'
    print(filepath)


if __name__ == '__main__':
    test_func_a()
    test_func_b()

输出结果是: D:\Test\user\outputData.csv,结果符合预期。

如果把函数a中global targetDir这一行声明去掉,b就访问不到a赋的值了。

你可能感兴趣的:(Python学习,python,开发语言)