我正在尝试导入队列,并且我一直在获取以下内容
Traceback (most recent call last):
File "threading.py", line 2, in <module>
import Queue
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/Queue.py", line 5, in <module>
import threading as _threading
File "/Users/zaq/threading.py", line 10, in <module>
queue = Queue.Queue()
AttributeError: 'module' object has no attribute 'Queue'
我正在使用链接Threading in python using queue
中的代码另外,我可以在python解释器中导入和使用Queue。
我做错了什么?
答案 0 :(得分:8)
我的脚本名称是threading.py ...更改了它,一切正常。菜鸟错误。