AttributeError: 'Thread' object has no attribute 'isAlive'
时间: 2023-09-05 15:07:38 浏览: 151
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为您在尝试访问Thread对象的isAlive属性时,该属性不存在。可能的原因是您错误地使用了isAlive而不是is_alive。请确保您在访问Thread对象的is_alive属性时正确地拼写了该属性。如果问题仍然存在,请提供更多的上下文或代码示例,以便我能够更好地帮助您解决问题。
阅读全文