gpt4 book ai didi

python - 模块对象没有属性 'thread'

转载 作者:太空宇宙 更新时间:2023-11-03 13:37:24 26 4
gpt4 key购买 nike

我使用的是基本线程。这是我输入的代码。

#!usr/bin/python3

import threading
class Bhai_ka_messenger(threading.Thread):
def run(self):
for message in range(10):
print threading.currentThread().getName()

a=Bhai_ka_messenger(name="message send")
b=Bhai_ka_messenger(name="message receive")
a.start()
b.start()

这表示模块对象没有属性线程。当我在在线 IDE 上运行它时,该程序可以运行。现在我无法解决这个问题,有人可以帮忙吗?

最佳答案

您已调用本地文件 threading.py,但随后将该文件导入文件本身,导致它无法工作。

希望对您有所帮助。

关于python - 模块对象没有属性 'thread',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37414442/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com