python 脚本处理文件在文件中的每一行末尾添加逗号

时间:2022-12-20 13:04:48

现有文件内容如下:

python 脚本处理文件在文件中的每一行末尾添加逗号

现在需要把文件中的每一行上加上引号,并在行尾添加逗号, 即如下效果:

python 脚本处理文件在文件中的每一行末尾添加逗号

”瑞士军刀“ python 脚本上场。

import os

with open('input.txt', 'rb') as lines:
with open('output.txt', 'wb') as outfile:
for line in lines:
line = '"' + line.replace(os.linesep, "") + '",' + os.linesep
outfile.write(line)

不算空行,6行代码。