try:
content = my_function()
except:
exit('Could not complete request.')
我想修改上面的代码来检查它的值content
是否包含字符串。我想过使用if 'stuff' in content:
or 正则表达式,但我不知道如何将它放入try
; 所以如果匹配是False
,它会引发异常。当然,我总是可以if
在该代码之后添加一个,但有没有办法把它挤进去?
伪代码:
try:
content = my_function()
if 'stuff' in content == False:
# cause the exception to be raised
except:
exit('Could not complete request.')