我有一个带条目的文本文件
f = open(afile,'r')
for i, l in enumerate(f):
if l=="* Row * totalEven *" and (l=='************************'):
continue
else:
nEv = l.split('*')[2] #here it chooses the 2nd column of the line
但是它给了我一个带有第三列数字的输出,空行和带有“totalEven”的行。然后我也尝试使用,if re.search(' Row totalEven *', l):但它给出了这个错误
Traceback (most recent call last):
File "thecode.py", line 77, in
main()
File "thecode.py", line 45, in main
iArr = getFileValue('rootOut',iArr)
File "thecode.py", line 62, in getFileValue
if re.search('* Row * totalEven *', l):
File "/usr/lib64/python2.6/re.py", line 142, in search
return _compile(pattern, flags).search(string)
File "/usr/lib64/python2.6/re.py", line 245, in _compile
raise error, v # invalid expression
sre_constants.error: nothing to repeat
您的布尔逻辑不正确:
if l==" Row totalEven " and (l=='*'):
这怎么能评估True?输入行永远不能同时等于这两个字符串。我认为你需要一个or,而不是and。也许更好:
if l != " Row totalEven *" and \
l != '**':
nEv = l.split('*')[2] # Choose the 2nd column of the line
现在,请注意[2]选择第三列,而不是第二列:Python具有从零开始的索引。您可以通过获取最后一列来简化此操作:
nEv = l.split('*')[-1] # Chooses the right-most column of the line
更正
由于边距上也有列分隔符,因此列表的每一端都会有一个空字符串,例如
['', ' 1 ', ' 1440000 ', '']
您想要的列是[2]或[-2]。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。