This commit is contained in:
马天姿 2020-07-08 02:05:18 +08:00
parent a3fe77e5b3
commit d614af6605
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