Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
238 views
in Technique[技术] by (71.8m points)

How to remove the last line in python to keep it at exactly 10 lines

I have a text file that already prepends until it has 10 lines

    Line 10
    Line 9
    Line 8
    Line 7
    Line 6
    Line 5
    Line 4
    Line 3
    Line 2
    Line 1

Now if I prepend more line into this text file. It'll become 11 Line

    Line 11
    Line 10
    Line 9
    Line 8
    Line 7
    Line 6
    Line 5
    Line 4
    Line 3
    Line 2
    Line 1

And now, I want to remove the Line 1 from the file to keep it only 10 lines long. How do I do that in python?

question from:https://stackoverflow.com/questions/66060436/how-to-remove-the-last-line-in-python-to-keep-it-at-exactly-10-lines

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Once you have read your lines, you can use slicing before writing them again with:

lines = lines[:10]  # Keep 10 first lines

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

57.0k users

...