This commit is contained in:
马天姿 2020-07-09 03:18:25 +08:00
parent 2edac8dab0
commit 612d34268d
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# coding:utf-8
import re
def objectFind(objs, filepath):
n = len(objs)
with open(filepath, 'r') as f:
for line in f.readlines():
for item in objs:
if(line.replace(" ", "").startswith(item)):
n = n-1
objs.remove(item)
#print(line)
continue
f.close()
#print("n = {}".format( n))
if n == 0:
return True
else:
print(objs)
return False