gpt4 book ai didi

python - 将 Python 列表转换为 CSV 中的列

转载 作者:太空宇宙 更新时间:2023-11-03 11:10:53 26 4
gpt4 key购买 nike

我有一个值列表(v1、v2、v3),我想将它们写入 csv 中名为 VALUES 的列。我正在使用 csvreader 和 csvwriter 来尽我所能。我只是想出了如何使用 csvwriter.writerow 将它们写入行。

最佳答案

听起来你已经尝试过了:

values = [1, 2, 3, 4, 5]
thecsv = csv.writer(open("your.csv", 'wb'))
thecsv.writerow(values)

也许你应该试试:

values = [1, 2, 3, 4, 5]
thecsv = csv.writer(open("your.csv", 'wb'))
for value in values:
thecsv.writerow(value)

关于python - 将 Python 列表转换为 CSV 中的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3902944/

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