为了账号安全,请及时绑定邮箱和手机立即绑定

python 如何try 多次

python 如何try 多次

慕尼黑5688855 2019-04-06 16:57:31
try:dosometingexcept:os._exit(0)比如执行dosometing时有错误,我想再试两次,如果两次执行还是有错误,那就os._exit(0)退出
查看完整描述

2 回答

?
慕标琳琳

TA贡献1830条经验 获得超9个赞

我找到方法了,分享出来importos
attempts=0
success=False
whileattempts<3andnotsuccess:
try:
	dosomething
	success=True
except:
	attempts+=1
	ifattempts==3:
	os._exit(0)
                            
查看完整回答
反对 回复 2019-04-06
?
拉莫斯之舞

TA贡献1820条经验 获得超10个赞

呃,这样?defretry_do(func,retry=None):
try:
func()
except:
ifretry:
retry()
else:
os._exit(0)
defdo_sth():
#dosomething
retry_do(do_sth,retry_do(do_sth,retry_do(do_sth)))
                            
查看完整回答
反对 回复 2019-04-06
  • 2 回答
  • 0 关注
  • 474 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信