是否可以通过线程等待 Try Else 块执行?

发布于 2025-01-11 16:34:01 字数 500 浏览 0 评论 0原文

在下面附加的代码中,有什么方法可以让我等待 else 块打印语句仅在线程完成后当前执行 由于函数 gg 是线程化的,我正在获取输出

HelloNothing went wrong

Hello

预期输出

Hello
Hello
Nothing went wrong

当前代码

import threading
import time 


def gg():
    print("Hello")
    time.sleep(5)
    print("Hello")

try:
    threading.Thread(target=gg).start()
except:
    print("Something went wrong")
else:
    print("Nothing went wrong")

In the below code attached is there any way I can wait for else block print statement to get executed only after threading is done currently
as the function gg is threaded I am getting output

HelloNothing went wrong

Hello

Expected output

Hello
Hello
Nothing went wrong

Current code

import threading
import time 


def gg():
    print("Hello")
    time.sleep(5)
    print("Hello")

try:
    threading.Thread(target=gg).start()
except:
    print("Something went wrong")
else:
    print("Nothing went wrong")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月隐月明月朦胧 2025-01-18 16:34:01

您可以使用加入方法

import threading
import time


def gg():
    print("Hello")
    time.sleep(5)
    print("Hello")


t1 = threading.Thread(target=gg)
try:
    t1.start()
    t1.join()
except:
    print("Something went wrong")
else:
    print("Nothing went wrong")

You can use Join method

import threading
import time


def gg():
    print("Hello")
    time.sleep(5)
    print("Hello")


t1 = threading.Thread(target=gg)
try:
    t1.start()
    t1.join()
except:
    print("Something went wrong")
else:
    print("Nothing went wrong")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文