怎么停止python脚本

图片[1]-怎么停止python脚本-uusu优素-乐高,模型,3d打印,编程

1、time.sleep(secs)

参考文档原文:

Suspendexecutionforthegivennumberofseconds.Theargumentmaybeafloatingpointnumberto
indicateamoreprecisesleeptime.Theactualsuspensiontimemaybelessthanthatrequestedbecause
anycaughtsignalwillterminatethesleep()followingexecutionofthatsignal'scatchingroutine.
Also,thesuspensiontimemaybelongerthanrequestedbyanarbitraryamountbecauseofthe
schedulingofotheractivityinthesystem.

大意:

让程序执行暂停指定的秒数,参数可以是浮点型以指定精确的时间,但是程序真正暂停的时间可能长于请求的时间也可能短于暂停的时间。

2、raw_input( )

通过等待输入来让程序暂停。

3、os.system("pause")

通过执行操作系统的命令来让程序暂停,该函数是通过实现标准C函数system( )来实现的。

Python2.4新加入了subprocess模块,而且官方建议使用改模块替换os.system所以,也可以这样写:

subprocess.call("pause",shell=True)
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞14 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容