从文件读取时,python用字符串替换换行符

时间:2018-08-25 06:20:38

标签: python string

我有一个名为“ test.txt”的文件,其中包含以下内容: 你好 你好 再见

我正在使用以下代码将换行符替换为文件中的逗号(,):

with open("test.txt", "r") as data:
    for each_line in data:
        try:
            name = each_line.replace("\n", ",").strip()
            print(name)

        except ValueError:
            pass

这将显示结果:

hello,
hi,
bye for now

但是我想要的结果应该是:

hello,hi,bye for now

我该如何实现?

0 个答案:

没有答案