python 操作 txt 文件中数据教程[4]-python 去掉 txt 文件行尾换行

时间:2022-07-23
本文章向大家介绍python 操作 txt 文件中数据教程[4]-python 去掉 txt 文件行尾换行,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

参考文章

python 操作 txt 文件中数据教程[1]-使用 python 读写 txt 文件[1]

python 操作 txt 文件中数据教程[2]-python 提取 txt 文件中的行列元素[2]

python 操作 txt 文件中数据教程[3]-python 读取文件夹中所有 txt 文件并将数据转为 csv 文件[3]

误区

  • 使用 python 对 txt 文件进行读取使用的语句是 open(filename, 'r')
  • 使用 python 对 txt 文件进行写入使用的语句是 open(fileneme, 'w')
  • 所以如果 要通过 python 对原始文件读取后,直接进行重新写入到原始文件 , 即读到原始文件中有"n"或"rn" 的地方,然后直接删除字符这是不现实的。应该是先通过 open(filename, 'r') 读取原始文件内容,再使用open(fileneme, 'w') 将删除了行尾回车符的字符串写入到新的文件中。即要做 读写分离

实例

  • 对于原始文件
  • 使用以下语句只是对读出的内容删除了行尾的换行符,而不是真正将修改的结果写入到原始的文件中。
filename = "./text.txt"
with open(filename, 'r') as f:
    print("open OK")
    for line in f.readlines():
        for a in line:
            # print(a)
            if a == 'n':
                print("This is \n")
                a = " "
    for line in f.readlines():
        for a in line:
            if a == 'n':
                print("This is \r\n")
    for line in f.readlines():
        line = line.replace("n", " ")
        line = line.strip("n")

"""open OK
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
This is n
"""
  • 但是原始文件并没有被修改

正确做法

  • 将文件中的读取后,使用写语句将修改后的内容重新写入新的文件中
with open('./text_1.txt', 'w') as f:
    with open('./text.txt', 'r') as fp:
        for line in fp:
            line = str(line).replace("n", " ")
            f.write(line)
  • It's very nice~!!

参考资料

[1]python操作txt文件中数据教程[1]-使用python读写txt文件: https://blog.csdn.net/u013555719/article/details/84553722

[2]python操作txt文件中数据教程[2]-python提取txt文件中的行列元素: https://blog.csdn.net/u013555719/article/details/84554355

[3]python操作txt文件中数据教程[3]-python读取文件夹中所有txt文件并将数据转为csv文件: https://blog.csdn.net/u013555719/article/details/84554568