diff --git a/MindSpore/src/step1/object.py b/MindSpore/src/step1/object.py new file mode 100644 index 0000000..7c17ed5 --- /dev/null +++ b/MindSpore/src/step1/object.py @@ -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