码迷,mamicode.com
首页 > 编程语言 > 详细

python提取数字对比任意相同

时间:2019-12-19 12:58:34      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:adl   line   readline   pen   style   desktop   pil   with   取数   

import re

patten=re.compile(r"\d+\.?\d*")
#s=[‘自由水岸花园9幢1303室‘]
#x=re.findall(patten,s[0])
#print(x)
with open(D:\Desktop\测试\wq.txt,r) as f,open(D:\Desktop\测试\ws.txt,r) as f2:
    a=f.readlines()
    b=f2.readlines()
    for i in range(len(a)):
        x=re.findall(patten,a[i])
        for j in range(len(b)): 
            y=re.findall(patten,b[j])
            if x==[] or y==[]:
                continue
            elif set(x)>set(y) or set(y)>set(x):
                print({}{}.format(a[i],b[j]))
            else:
                continue

python提取数字对比任意相同

标签:adl   line   readline   pen   style   desktop   pil   with   取数   

原文地址:https://www.cnblogs.com/zhuyu139/p/12067005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!