使用函数在 Python 中创建线程
问题:
同时运行两个函数Python 脚本,您无法使用提供的示例代码实现线程。您更喜欢使用线程函数而不是基于类的方法。
解决方案:
您可以在 Python 中使用线程函数创建线程,而不使用 Thread 的子类。下面是一个示例:
<code class="python">from threading import Thread from time import sleep def threaded_function(arg): for i in range(arg): print("running") sleep(1) if __name__ == "__main__": thread = Thread(target=threaded_function, args=(10,)) thread.start() thread.join() print("thread finished...exiting")</code>
解释:
以上是如何使用函数在 Python 中创建线程而不需要子类化 Thread?的详细内容。更多信息请关注PHP中文网其他相关文章!