如何在.txt文件中的所有字符之间添加空格

时间:2016-03-02 15:20:54

标签: python python-2.7 whitespace

在Python 2.7中,我想知道如何在.txt文件(非常大的文件)中的每个字符之间添加空格。我知道如何用Emacs做这件事,但速度很慢。

输入示例:

122212121212121
212121212121212
121212121212121

预期产出:

1 2 2 2 1 2 1 2 1 2 1 2 1 2 1
2 1 2 1 2 1 2 1 2 1 2 1 2 1 2
1 2 1 2 1 2 1 2 1 2 1 2 1 2 1

1 个答案:

答案 0 :(得分:4)

试试这个:

with open(infile) as open_file:
    with open(outfile, 'w') as write_file:
        for line in open_file:
            write_file.write(" ".join(line))