gpt4 book ai didi

python - Python 中的 Try/except 语法有两个相同的异常

转载 作者:太空宇宙 更新时间:2023-11-04 07:12:05 26 4
gpt4 key购买 nike

我正在根据两个列表检查电子邮件——一个域列表和一个单独的电子邮件列表。我将如何构造以下 try 语句 --

Try: 'email in email_list'

Except DoesNotExist: 'domain in domain list' # if email not found

Except DoesNotExist: 'print error message' # if both email and domain not found

构造此语句需要使用什么语法?

最佳答案

听起来您正在寻找类似的东西:

if email in email_list:
# do something with email
elif domain in domain_list:
# do something with domain
else:
print "neither email nor domain found"

在这种情况下可能不需要异常(exception)。

关于python - Python 中的 Try/except 语法有两个相同的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5958150/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com