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 で操作できる別の方法はありますか?