python中如何删除文本中指定的列

 

1、删除第一列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

for i in lines:
    i = i.split()[1:]
    out_file.write(" ".join(i))
    out_file.write("\n")

in_file.close()
out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
02 03 04 05 06 07 08 09 10
12 13 14 15 16 17 18 19 20
22 23 24 25 26 27 28 29 30
32 33 34 35 36 37 38 39 40
复制代码

 

 

2、删除第6列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

for i in lines:
    i = i.split()[:5] + i.split()[6:]
    out_file.write(" ".join(i))
    out_file.write("\n")

out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
01 02 03 04 05 07 08 09 10
11 12 13 14 15 17 18 19 20
21 22 23 24 25 27 28 29 30
31 32 33 34 35 37 38 39 40
复制代码

 

 

3、删除1-4列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

for i in lines:
    i = i.split()[4:]
    out_file.write(" ".join(i))
    out_file.write("\n")

in_file.close()
out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
05 06 07 08 09 10
15 16 17 18 19 20
25 26 27 28 29 30
35 36 37 38 39 40
复制代码

 

 

4、删除1、4、7列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

delete_cols = [1, 3, 7]

for i in lines:
    i = i.split()
    temp = []
    for j in range(0, len(i)):
        if j + 1 not in delete_cols:
            temp.append(i[j])
    out_file.write(" ".join(temp))
    out_file.write("\n")

in_file.close()
out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
02 04 05 06 08 09 10
12 14 15 16 18 19 20
22 24 25 26 28 29 30
32 34 35 36 38 39 40
复制代码

 

 

5、删除最后一列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

for i in lines:
    i = i.split()[:-1]
    out_file.write(" ".join(i))
    out_file.write("\n")

in_file.close()
out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
01 02 03 04 05 06 07 08 09
11 12 13 14 15 16 17 18 19
21 22 23 24 25 26 27 28 29
31 32 33 34 35 36 37 38 39
复制代码

 

 

6、删除倒数第4列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

for i in lines:
    i = i.split()
    i.pop(-4)
    out_file.write(" ".join(i))
    out_file.write("\n")

in_file.close()
out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
01 02 03 04 05 06 08 09 10
11 12 13 14 15 16 18 19 20
21 22 23 24 25 26 28 29 30
31 32 33 34 35 36 38 39 40
复制代码

 

 

7、删除最后3列

复制代码
[root@PC1 test3]# ls
a.txt  test.py
[root@PC1 test3]# cat a.txt
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
[root@PC1 test3]# cat test.py
#!/usr/bin/python

in_file = open("a.txt", "r")
out_file = open("result.txt", "w")
lines = in_file.readlines()

for i in lines:
    i = i.split()[:-3]
    out_file.write(" ".join(i))
    out_file.write("\n")

in_file.close()
out_file.close()
[root@PC1 test3]# python test.py
[root@PC1 test3]# ls
a.txt  result.txt  test.py
[root@PC1 test3]# cat result.txt
01 02 03 04 05 06 07
11 12 13 14 15 16 17
21 22 23 24 25 26 27
31 32 33 34 35 36 37
复制代码

 

posted @   小鲨鱼2018  阅读(2123)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
历史上的今天:
2021-06-04 c语言中同时为两个数组排序
2021-06-04 c语言 12-5
2021-06-04 c语言中具有结构体成员的结构体
2021-06-04 c语言中利用结构体计算两点之间的距离。
2021-06-04 c语言 12-4
2021-06-04 c语言中结构体数组
2021-06-04 c语言 12-3
点击右上角即可分享
微信分享提示