我的目标是将 makeList 的索引打印到另一个文件中。我检查了我的开始和结束值,结果是正确的。但是,我的 outputFile 完全关闭,因为它只在该文件上打印一个字符。
def printOutput(start, end, makeList):
if start == end == None:
return
else:
while start <= end:
print start
print end
outputFile = open('out'+uniprotID+'.txt','w')#file for result output
inRange = makeList[start]
start += 1
outputFile.write(inRange)