Python中报t = threading.Thread(target=saySorry) AttributeError: module 'threading' has no attribute 'Thread'
时间: 2023-09-08 19:17:12 浏览: 114
python-threading
这个错误可能是因为您的Python环境中缺少了线程模块。您可以尝试安装Python的线程模块,或者检查您的Python环境是否已经包含了线程模块。
如果您正在使用Python 2.x版本,您可以使用以下命令安装线程模块:
```python
pip install thread
```
如果您正在使用Python 3.x版本,线程模块已经默认安装,您可以直接使用以下代码:
```python
import threading
t = threading.Thread(target=saySorry)
t.start()
```
如果您的Python环境中仍然无法找到线程模块,您可以尝试重新安装Python来解决这个问题。
阅读全文