python 两个list 求交集,并集,差集
摘要:
def diff(listA,listB): #求交集的两种方式 retA = [i for i in listA if i in listB] retB = list(set(listA).intersection(set(listB))) print "retA is: ",retA print 阅读全文
posted @ 2018-01-20 18:23 逐风浪子 阅读(645) 评论(0) 推荐(0) 编辑