我正在尝试使用 Python 写入现有的 .csv 文件,但我不想将数据附加到现有文件的底部,而是想将新信息附加到 .csv 文件的新列中。这样做的原因是我想“无限地”循环通过代码的读取数据部分,然后将每次循环迭代期间读取的数据添加到新列而不是行。本质上,我想要以下内容:
Row1Iteration1, Row1Iteration2, Row1Iteration3,..., Row1IterationX
Row2Iteration1, Row2Iteration2, Row2Iteration3,..., Row2IterationX
Row3Iteration1, Row3Iteration2, Row3Iteration3,..., Row3IterationX
Row4Iteration1, Row4Iteration2, Row4Iteration3,..., Row4IterationX
Row5Iteration1, Row5Iteration2, Row5Iteration3,..., Row5IterationX
代替:
Row1Iteration1
Row2Iteration1
Row3Iteration1
Row4Iteration1
Row5Iteration1
Row1Iteration2
Row2Iteration2
Row3Iteration2
etc...
有谁知道这样做的方法,或者这是 .csv 文件的不可能约束?除了 .csv 之外,还有其他方法可以做到这一点并仍然使用 Excel 进行操作吗?