Python-检查另一个字符串中是否存在多个字符串
如何检查数组中的任何字符串是否在另一个字符串中?
喜欢:
a = ['a', 'b', 'c']str = "a123"
if a in str:
print "some of the strings found in str"
else:
print "no strings found in str"
该代码行不通,只是为了展示我想要实现的目标。
回答:
你可以使用any
:
if any(x in str for x in a):
同样,要检查是否找到了列表中的所有字符串,请使用all代替any。
以上是 Python-检查另一个字符串中是否存在多个字符串 的全部内容, 来源链接: utcz.com/qa/432546.html