这是我的程序,如果我给出完整的名称,就像我输入一样eng
,它会显示值,而不是只显示eng
值
import re
sent = "eng"
#sent=raw_input("Enter word")
#regex = re.compile('(^|\W)sent(?=(\W|$))')
for line in open("sir_try.txt").readlines():
if sent == line.split()[0].strip():
k = line.rsplit(',',1)[0].strip()
print k
gene name utr length
ensbta 24
ensg1 12
ensg24 30
ensg37 65
enscat 22
ensm 30
实际上我想做的是我想搜索highest value from the text file
不通过单词,它从文本文件中删除相同单词的所有值,其值小于上面应该12 , 30
为 ensg 删除的文本中的最大值,然后it should find the minimum value from the utr values and display it with name
你们的回答是,我已经完成了,我在展示我的程序之前提到了它。