Python 求两个文本文件以行为单位的交集 并集 差集
2021-07-09 14:07
阅读:390
标签:read 交集 并集 set %s 文本 bsp diff readline Python 求两个文本文件以行为单位的交集 并集 差集,来代码: Python 求两个文本文件以行为单位的交集 并集 差集 标签:read 交集 并集 set %s 文本 bsp diff readline 原文地址:https://www.cnblogs.com/tianqizhi/p/9565890.html
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 求两个文本文件以行为单位的交集 并集 差集
文章链接:http://soscw.com/index.php/essay/102818.html
文章标题:Python 求两个文本文件以行为单位的交集 并集 差集
文章链接:http://soscw.com/index.php/essay/102818.html
评论
亲,登录后才可以留言!