2024年10月14日
现象:
选择“Open in new window”,就会重新打开一个界面显示新工程,
选择“Open in current window”,就会被替换,要勾选下面的add to currently opened projects。
如果你需要在已经打开的工程界面,同时打开已经存在的其他工程。
解决方法:
1、打开pycharm中的File->Settings;
2、依次点击“project->project struct
2024年10月14日
说明
1、nonlocal声明的变量不是局部变量或全局变量,而是外部嵌套函数中的变量。
2、nonlocal定义后的变量只会在调用的子函数中发挥作用。
实例
x = 1
def func():
nonlocal x
x =2
print(x)
func()
print(x)
结果代码报错,SyntaxError: no binding for nonlocal 'x' found
为什么我