我想检查字符串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))
抛出错误的最佳实践是什么?
答案 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')