Python怎么设置函数超时结束 python设置函数超时时间

主机教程 建站分享 2年前 (2022-11-29) 186次浏览

文章摘要:Python怎么设置函数超时结束 python设置函数超时时间

在Python中利用timeout-decorator库设置函数超时结束,具体方法如下: 1.首先,在Pyth […]

在Python中利用timeout-decorator库设置函数超时结束,具体方法如下:

1.首先,在Python中安装timeout-decorator库;

pip install timeout-decorator

2.timeout-decorator库安装好后,通过执行以下命令即可设置函数超时结束;

import time

import timeout_decorator

@timeout_decorator.timeout(5)

def mytest():

print("Start")

for i in range(1,10):

time.sleep(1)

print("{} seconds have passed".format(i))

if __name__ == '__main__':

mytest()


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:Python怎么设置函数超时结束 python设置函数超时时间
文章链接:http://www.7966.org/post/14166.html
转载请注明出处

喜欢 (0)