我想使用 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 列的文件,并且我仍然可以以相同的方式缩进所有列?