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 に答える