但是它报了个错AttributeError: 'module' object has no attribute 'Timer'
时间: 2023-06-21 09:17:28 浏览: 50
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为Python的time模块中没有Timer这个属性导致的。您可以检查一下您的代码中是否有类似于下面这样的代码:
```
from time import Timer
```
如果有的话,请将其改为:
```
from threading import Timer
```
这样应该就可以解决这个问题了。如果还有其他问题,请告诉我。
阅读全文