gpt4 book ai didi

python - 函数未正确写入 .xls。 Python 2.7.1

转载 作者:太空宇宙 更新时间:2023-11-03 19:25:15 25 4
gpt4 key购买 nike

当我检查 Excel 文件时,它只写入最后输入的一行数据。

def Table(fn,fe):

for fseq in fn:
count=0
for k in fseq:
if k=='G' or k=='C':
count=count+1
percentage=(float(count)/len(fseq))*100
fin=open(fe,'w')
table=str(fseq)+'\t'+str(count)+'\t'+str(percentage)+'\n'
fin.write(table)
return fe



tablist=["AAUG","GCGA","AGCG","TCGA"]
fout=Table(tablist, 'abc.xls')

它应该输出:

   AAUG    1   25.0
GCGA 3 75.0
AGCG 3 75.0
TCGA 2 50.0

相反,我的输出如下所示:

   TCGA    2   50.0

并返回正在写入的文件的名称。

为什么只为字符串的最后一个元素写入数据?

最佳答案

您的 for 循环是在字符串上循环,而不是每个字符串的字符。试试这个:

   for k in fn:
for c in k:
if c=='G' or c=='C':
count=count+1

(else:不是必需的。)

您还需要将编写代码的文件移到外循环内部,以便使报告正确(但将打开移到外循环上方)。

关于python - 函数未正确写入 .xls。 Python 2.7.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8380516/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com