Skip to content Skip to main navigation Skip to footer

python检查序列seq是否含有aset中项的方法

python检查序列seq是否含有aset中项是如何来实现的呢?下面的内容将会通过具体的实例来演示python检查序列seq是否含有aset中项的实现方法及相关技巧:

本文实例讲述了python检查序列seq是否含有aset中项的方法。分享给大家供大家参考。具体实现方法如下:

# -*- coding: utf-8 -*-
def containsAny(seq, aset):
  """ 检查序列seq 是否含有aset 中的项 """
  for c in seq:
    if c in aset: return True
  return False
seq = [1,2,3]
aset = [3,4,5]
print(containsAny(seq,aset))
 


python检查序列seq是否含有aset中项就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.