python3.6的线程包

时间:2017-05-27 15:05:45

标签: python multithreading python-3.x package

这是我在尝试导入线程包时遇到的:

>>> import thread Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packag es/thread.py", line 3 print('This is ultran00b's package - thread')

我尝试重新卸载并再次安装,但它无法正常工作。

2 个答案:

答案 0 :(得分:1)

在python 3中不推荐使用线程模块。请尝试使用线程:

import threading

答案 1 :(得分:0)

您正在尝试导入线程类?

使用:

from threading import Thread