13

可能重复:
检查另一个字符串中是否存在多个字符串
检查以确保一个字符串不包含多个值

所以伙计们。如果我有

example = "1", "2", "3"

我将如何检查是否有任何项目在字符串中。

4

2 回答 2

26

使用any()

if any(s in some_string for s in example):
    # at least one of the elements is a substring of some_string
于 2012-09-28T18:37:08.363 回答
-1

一个例子:

>>> example = "1", 2, "3"
>>> str in [type(entry) for entry in example]

如果元组中有 str,将返回 True。

于 2012-09-28T18:39:25.397 回答