Python スクリプトを使用して、ファイルの各列のすべての文字列を特定の順序で整列させたいと考えました。サンプル シナリオを使用して、問題と考えられる結果を説明しました。
#sample.txt
start() "hello"
appended() "fly"
instantiated() "destination"
do() "increment"
logging_sampler() "dummy string"
出力シナリオ
#sample.txt(indented)
start() "hello"
appended() "fly"
instantiated() "destination"
do() "increment"
logging_sampler() "dummy string"
ファイルを処理して上記のインデントを提供できるpythonライブラリはありますか?2列以上のファイルがあり、すべての列を同じ方法でインデントできるような一般的な解決策はありますか?