gpt4 book ai didi

python - 在python中将数据帧打印到.csv。 TypeError :must be convertible to a buffer

转载 作者:行者123 更新时间:2023-12-03 08:27:16 25 4
gpt4 key购买 nike

我正在研究一个数据框,并将特定的行添加到列表中。然后,我获取该列表,并尝试将其另存为.csv文件。但是,我收到以下错误:TypeError:必须可转换为缓冲区,而不是DataFrame。

非常感谢任何关于这是什么以及如何解决此问题的建议。

这是一些代码:

my_list = []
my_list.append(df)

CSVdir = r"C:\Users\...."
realCSVdir = os.path.realpath(CSVdir)

if not os.path.exists(CSVdir):
os.makedirs(CSVdir)


new_file_name = os.path.join(realCSVdir,'banana.csv')
new_file = open(new_file_name, 'wb')

for item in my_list:
new_file.write(item)
new_file.write("\n")

最佳答案

您正在寻找 DataFrame.to_csv :

for item in my_list:
item.to_csv(new_file)

关于python - 在python中将数据帧打印到.csv。 TypeError :must be convertible to a buffer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37900781/

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