字符串中的字符串列表

时间:2013-02-06 06:54:28

标签: python

如何在python中编写表达式,检查字符串是否包含任何提供的字符串。 像这样:

s = 'winter summer spring fall'

# i like fall and spring
i_like = 'fall', 'spring' in s

1 个答案:

答案 0 :(得分:2)

使用内置的any功能:

i_like = any(i in s for i in ('fall', 'spring'))

这将检查元组中的任何元素是否在字符串中。