Python:检查字符串是否在列表中,否则抛出错误

时间:2019-04-17 14:33:34

标签: python-3.x error-handling

我想检查字符串s是否在给定列表valid_string中。如果没有,我想抛出一个错误。

valid_string = ['abc', 'def', 'ghi']
s = 'test'
if s not in valid_string:
# Throw error: ('"{}" is not a valid string. Valid strings are {}'.format(s, valid_string))

抛出错误的最佳实践是什么?

1 个答案:

答案 0 :(得分:1)

您可以尝试使用手动例外,如下所示:

valid_string = ['abc', 'def', 'ghi']
s = 'test'
if s not in valid_string:
    raise Exception('This is the exception you expect to handle')