Python检测字符串中是否包含某字符集合中的字符
目的
检测字符串中是否包含某字符集合中的字符
方法
最简洁的方法如下,清晰,通用,快速,适用于任何序列和容器
def containAny(seq,aset):
for c in seq:
if c in aset:
return True
return False
第二种适用itertools模块来可以提高一点性能,本质上与前者是同种方法(不过此方法违背了Python的核心观点:简洁,清晰)
itertools.ifilter(predicate, iterable)的说明
Make an iterator that filters elements from iterable returning only those for which the predicate is True. If predicate is None, return the items that are true.
例如:
ifilter(lambda x: x%2, range(10)) --> 1 3 5 7 9
import itertools
def containAny(seq,aset):
for item in itertools.ifilter(aset.__contain__,seq):
return True
return False
以上是 Python检测字符串中是否包含某字符集合中的字符 的全部内容, 来源链接: utcz.com/z/330351.html