• python中实现指定类型文件的合并


    1、合并txt文件

    [root@PC1 test2]# ls
    a.txt  b.txt  c.txt  test.py  x.csv  y.csv
    [root@PC1 test2]# cat a.txt
    a a a
    b b b
    [root@PC1 test2]# cat b.txt
    c c c
    d d d
    [root@PC1 test2]# cat c.txt
    e e e
    f f f
    [root@PC1 test2]# cat x.csv
    8 9 4
    2 3 9
    [root@PC1 test2]# cat y.csv
    8 4 2
    2 4 8
    [root@PC1 test2]# cat test.py
    #!/usr/bin/python
    out_file = open("result.txt", "w")     ## 输出文件
    import os                              ## 导入os模块
    for i in os.listdir():                 ## 遍历当前目录
        if i.endswith(".txt"):             ## 判断文件是否是txt文件
            tmp_file = open(i, "r")        ## 打开txt文件
            for j in tmp_file:             
                out_file.write(j)          ## 写入
            tmp_file.close()               ## 关闭txt文件
    out_file.close()
    [root@PC1 test2]# python test.py
    [root@PC1 test2]# ls
    a.txt  b.txt  c.txt  result.txt  test.py  x.csv  y.csv
    [root@PC1 test2]# cat result.txt           ## 合并结果
    a a a
    b b b
    c c c
    d d d
    e e e
    f f f

    2、合并csv文件

    [root@PC1 test2]# ls
    a.txt  b.txt  test.py  x.csv  y.csv
    [root@PC1 test2]# cat a.txt
    a a a
    b b b
    [root@PC1 test2]# cat b.txt
    c c c
    d d d
    [root@PC1 test2]# cat x.csv
    8 9 4
    2 3 9
    [root@PC1 test2]# cat y.csv
    8 4 2
    2 4 8
    [root@PC1 test2]# cat test.py
    #!/usr/bin/python
    
    out_file = open("result.txt", "w")
    import os
    
    for i in os.listdir():
        if i.endswith(".csv"):
            tmp_file = open(i, "r")
            for j in tmp_file:
                out_file.write(j)
            tmp_file.close()
    
    out_file.close()
    [root@PC1 test2]# python test.py
    [root@PC1 test2]# ls
    a.txt  b.txt  result.txt  test.py  x.csv  y.csv
    [root@PC1 test2]# cat result.txt      ## 合并结果
    8 9 4
    2 3 9
    8 4 2
    2 4 8

  • 相关阅读:
    laravel-admin 关闭debug模式导致异常信息到页面的排查
    laravel-sql
    laravel任务调度出现僵尸进程
    PHP获取首字母笔记
    IP库笔记
    深入理解 js 闭包
    用键盘实现上下选择
    密码保护
    评分效果
    数组去重
  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/16353342.html
Copyright © 2020-2023  润新知