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
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!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