gpt4 book ai didi

python - 使用变量作为文件名将 pandas df 写入文件

转载 作者:行者123 更新时间:2023-12-01 00:45:10 25 4
gpt4 key购买 nike

我正在尝试将 pandas df 写入输出文件:

outFileName="myfile_" + gene_name #gene_name gets a new value from argparse 

df.to_csv('%.csv' %outFileName, sep=',', index=False)

我收到的错误::

TypeError: %c requires int or char

我试过了

outFileName=str("myfile_" + gene_name)

并得到同样的错误。我错过了什么吗?如果我不使用变量作为输出文件名,我可以保存 df,但我需要该变量。

最佳答案

使用to_csv:

df.to_csv(outFileName+".csv", sep=',', index=False)

关于python - 使用变量作为文件名将 pandas df 写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57034893/

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