1

我的休息有什么问题?我不明白为什么当我编译代码时它在我的休息时说无效语法

for index, (start, end) in enumerate(searchPFAM(fname)):            
    with open('output_'+uniprotID+'-%s.txt' % index,'w') as fileinput:
        print start, end
        for item in lookup[uniprotID]:
            item, start, end = map(int, (item, start, end)) #make sure that all value is int
            if start <= item <= end:
                print item
                result = str(item - start)
                fileinput.write(">{0} | at position {1} \n".format(uniprotID, result))
                #text = fileinput.write(''.join(makeList[start-1:end]))
                textwrap.fill(''.join(makeList[start-1:end],width = 60)
                break
            else:
                fileinput.write(">{0} | N/A\n".format(uniprotID))
                #text = fileinput.write(''.join(makeList[start-1:end]))
                textwrap.fill(''.join(makeList[start-1:end],width = 60)
4

2 回答 2

6

您在此行缺少右括号:

textwrap.fill(''.join(makeList[start-1:end],width = 60)
#            ^       ^                                ^

应该是这样的:

textwrap.fill(''.join(makeList[start-1:end]),width = 60)
于 2012-07-15T21:54:50.540 回答
1

它是上一行缺少的右括号。

于 2012-07-15T21:54:58.873 回答