本文介绍了拆分后与Python的缩进不一致的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
进行中的编辑有时会在以后重新提交进行中的编辑有时会在以后重新提交进行中的编辑有时会在以后重新提交
edit in progress will re-submit sometimes lateredit in progress will re-submit sometimes lateredit in progress will re-submit sometimes later
推荐答案
应该有效:
import re #Regex may be the easiest way to split that line
with open(infile) as in_f, open(outfile,'w') as out_f:
f = (i for i in in_f if i.rstrip()) #iterate over non empty lines
for line in f:
_, k = line.split('\t', 1)
x = re.findall(r'^1..100\t([+-])chr(\d+):(\d+)\.\.(\d+).+$',k)
if not x:
continue
out_f.write(' '.join(x[0]) + '\n')
这篇关于拆分后与Python的缩进不一致的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!