其他分享
首页 > 其他分享> > 两个列表对数问题

两个列表对数问题

作者:互联网

问题描述:数据库表中的数据较之系统中的数据缺少了1000条左右,现有数据库表中每条记录的编码和系统中每条记录的编码,要求列出系统中有而数据库表中没有的所有编码。

f1 = open('./nc_code.txt',encoding='UTF-8')
f2 = open('./sql_code.txt',encoding='UTF-8')
sql_ls,nc_ls = [],[]

with f2:
    while True:
        line = f2.readline()
        if line:
            sql_ls.append(line[:-2])
        else:
            break
with open('./ans.txt','w') as fp:
    with f1:
        while True:
            line = f1.readline()
            if line:
                if line[:-2] not in sql_ls:
                    fp.write(line)
            else:
                break

标签:f1,f2,两个,表中,列表,ls,sql,对数,line
来源: https://www.cnblogs.com/thx2199/p/16581290.html