在运行代码的时候程序报错:
NameError: name ‘append’ is not defined
我发现是因为在打代码的过程中,把
caches.append(cache)
打成了:
caches = append(cache)
这里用的时 = 而不是 . 调用函数,修改后这个问题解决了
在运行代码的时候程序报错:
NameError: name ‘append’ is not defined
我发现是因为在打代码的过程中,把
caches.append(cache)
打成了:
caches = append(cache)
这里用的时 = 而不是 . 调用函数,修改后这个问题解决了