目的
检测字符串中是否包含某字符集合中的字符
方法
最简洁的方法如下,清晰,通用,快速,适用于任何序列和容器
代码如下:
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
如果要检测两个字符串是否为包含关系,此时必须检查所有子项,最好适用set类型,其中set(aset).difference(seq)是指存在于aset中而seq没有的元素:
代码如下:
def containall(seq,aset):
return not set(aset).difference(seq)
例如下面这个例子:
代码如下:
in [4]: l1=[1,2,3,4]
in [5]: l2=[1,4,3,1]
in [6]: containall(l1,l2)
out[6]: true
in [7]: containall(l2,l1)
out[7]: false
注意一下,set.symmetric_difference是指两个集合独有的元素
代码如下:
in [9]: l2=[3,2,4,5]
in [10]: x=set(l1)
in [11]: x.symmetric_difference(l2)
out[11]: set([1, 5])