Python 求两个文本文件以行为单位的交集 并集 差集

2021-07-09 14:07

阅读:390

标签:read   交集   并集   set   %s   文本   bsp   diff   readline   

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 求两个文本文件以行为单位的交集 并集 差集

标签:read   交集   并集   set   %s   文本   bsp   diff   readline   

原文地址:https://www.cnblogs.com/tianqizhi/p/9565890.html


评论


亲,登录后才可以留言!