gpt4 book ai didi

python - python中的全局关键字

转载 作者:行者123 更新时间:2023-12-04 17:37:33 25 4
gpt4 key购买 nike

我正在学习 python,并且在 vscode 中与 global 关键字斗争.到目前为止,代码正在运行,但 vscode linter 引发错误,我想了解原因

我试过使用 global 关键字,即使出现 linter 错误,代码也能正常工作。我尝试使用局部变量并没有收到任何错误

def whatIs ():
global myvalue
myvalue +=10
print("myvalue: {}".format(myvalue))

myvalue=10

whatIs()

print("myvalue: {}".format(myvalue))

linter 指向 myvalue在函数中:

Undefined variable 'myvalue' pylint(undefined-variable)



但输出是我所期望的。
myvalue: 20
myvalue: 20

就像 vscode不喜欢 global 关键字

最佳答案

尝试移动这条线

myvalue=10

在定义 WhatIs 函数之前。
myvalue=10

def whatIs ():
global myvalue
myvalue +=10
print("myvalue: {}".format(myvalue))

whatIs()

print("myvalue: {}".format(myvalue))

关于python - python中的全局关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56097539/

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