加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
xxf.py 400 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunchangheng 提交于 2019-12-20 16:34 . init
#!./usr/bin/env python
# -*- coding: utf-8 -*-
# Date: 2019/8/21
# Author: sun
a_file = open('A.txt', 'r')
b_file = open('B.txt', 'r')
c_file = open('C.txt', 'w')
b_phone = []
for phone in b_file.readlines():
b_phone.append(phone.strip('\n'))
for phone in a_file.readlines():
if phone.strip('\n') not in b_phone:
c_file.write(phone)
a_file.close()
b_file.close()
c_file.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化