标签:col style nbsp strip pen color 迭代器 pre read
def tail(filename): f = open(filename,encoding=‘utf-8‘) while True: line = f.readline() if line.strip(): yield line.strip() g = tail(‘file‘) for i in g: if ‘python‘ in i: print(‘***‘,i)
标签:col style nbsp strip pen color 迭代器 pre read
原文地址:https://www.cnblogs.com/Celebrator/p/9823290.html