如下所示:
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/python
#-*- coding: utf-8 -*-
fin = open ( 'add_1.txt' )
a = fin.readlines()
# print a
fout = open ( 'ok.txt' , 'w' )
b = ''.join(a[: 3 ])
fout.write(b)
|
删除3行后的其他行。
以上这篇Python删除n行后的其他行方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/baidu_33260220/article/details/78780048