当前位置 : 主页 > 编程语言 > python >

python3:No module named ‘thread‘解决方案

来源:互联网 收集:自由互联 发布时间:2022-06-15
python3中导入thread模块(线程支持模块)的时候,提示没有找到thread模块,但是thread作为内置模块,不应该没有thread模块的,而这个错误在python2不会发生。问题到底出现在哪里?应该是升级

python3中导入thread模块(线程支持模块)的时候,提示没有找到thread模块,但是thread作为内置模块,不应该没有thread模块的,而这个错误在python2不会发生。问题到底出现在哪里?应该是升级导致的问题了。

经过研究发现:python3中,由于thread有两个很致命的问题,所以python3更推荐用threading代替thread,所以,thread被改名为_thread。 python3中thread被threading代替,thread被改名为_thread

import _thread

改成这样,我们的问题就解决了。

同时兼容python2与python3的方法:

import sys

if(sys.version[:1] == "3"):import _thread as thread

#如果版本号是3

else:import thread

#否则,也就是python2

查看已导入的模块,发现thread已经引入了。

dir()  # 查看已导入模块
['__annotations__', '__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__', '_thread']


上一篇:199. Binary Tree Right Side View**
下一篇:没有了
网友评论