我是 python 新手,这是我的代码
for myPath,item in dicts.items():
for elem in item:
thefile = open(elem, 'r')
for line1,line2 in itertools.izip_longest(*[thefile]*2):
if ('namespace' in line1) or ('namespace' in line2):
return True
if line2 is None: (this condition dont work)
continue
我需要确定 line2 是否在 EOF 之后以在 item 中获取另一个元素
现在我的条件不起作用。谢谢