我目前正在创建一个函数,该函数从其他函数读取数据并将其写入桌面上的文本文件.
def outputResults(filename):
"""This function serves to output and write the results from analyzeGenome.py to a text file \
Input: filename of output file, dictionary of codon frequencies, dictionary of codon counts \
GC-content, FASTA header, & sequence length
Output: Text file containing all the above """
outString = "Header = %s" %header
filename.write(outString)
outString2 = "Sequence Length = %.3F MB" % length
filename.write(outString2)
Run Code Online (Sandbox Code Playgroud)
当我这样做时,python在文本文件中一个接一个地打印行.如何打印到下一行并在行之间添加空格?