gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 10:15:15 24 4
gpt4 key购买 nike

在 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

最佳答案

试试这个:

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

关于python - 如何在 .txt 文件中的所有字符之间添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35751290/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com