Python 求两个文本文件以行为单位的交集 并集 差集
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 求两个文本文件以行为单位的交集 并集 差集相关的知识,希望对你有一定的参考价值。
Python 求两个文本文件以行为单位的交集 并集 差集,来代码:
s1 = set(open(‘a.txt‘,‘r‘).readlines()) s2 = set(open(‘b.txt‘,‘r‘).readlines()) print ‘ins: %s‘%(s1.intersection(s2)) print ‘uni: %s‘%(s1.union(s2)) print ‘dif: %s‘%(s1.difference(s2).union(s2.difference(s1)))
以上是关于Python 求两个文本文件以行为单位的交集 并集 差集的主要内容,如果未能解决你的问题,请参考以下文章