关于python字符串列表

时间:2018-05-18 17:40:53

标签: python

我想检查句子是否不在句子列表中。所以我在这里使用“not in”运算符,但问题是它需要花费太多时间来处理更大的列表。

list_of_sentences = ["How are you" , "Who are you" , "Are you okay"]
string = "What about you?"

所以,如果我想检查字符串不在列表中我做:

if string not  in list_of_sentences:
       append the string to same list(list_of_sentences)

但是如果要搜索大量字符串并且“list_of_sentences”的大小会随着时间的推移而增长,那么它就没有用。

那么,有没有其他方法以最快的方式做到这一点?

0 个答案:

没有答案