AttributeError: module 'thread' has no attribute 'start_new_thread'
时间: 2024-06-19 19:03:29 浏览: 214
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
AttributeError: module 'thread' has no attribute 'start_new_thread' 错误通常是由于使用 Python 3.x 中的 threading 模块而不是 Python 2.x 中的 thread 模块导致的。在 Python 3.x 中,thread 模块已被移除,因此您需要使用 threading 模块来处理多线程任务。如果您在使用 Python 2.x,则应该检查是否正确导入 thread 模块以及是否正确使用了 start_new_thread() 函数。
相关问题:
1. Python 3.x 中 thread 模块被移除了吗?
2. threading 模块和 thread 模块有什么区别?
3. 如何在 Python 中启动一个新线程?
阅读全文