📜  python 列表包含子字符串 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:24.427000             🧑  作者: Mango

代码示例3
matchers = ['abc','def']
matching = [s for s in my_list if any(xs in s for xs in matchers)]

Output:
['abc-123', 'def-456', 'abc-456']