问题描述:数据库表中的数据较之系统中的数据缺少了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