【发布时间】:2011-04-26 16:57:20
【问题描述】:
我目前正在创建一个函数,该函数从其他函数读取数据并将其写入我桌面上的文本文件。
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)
当我这样做时,python 会在文本文件中逐行打印。如何打印到下一行并在行之间添加空格?
【问题讨论】: