Read lines from a text file, reverse and save in a

2020-06-21 07:03发布

So far I have this code:

 f = open("text.txt", "rb")
 s = f.read()
 f.close()
 f = open("newtext.txt", "wb")
 f.write(s[::-1])
 f.close()

The text in the original file is:

This is Line 1
This is Line 2
This is Line 3
This is Line 4

And when it reverses it and saves it the new file looks like this:

 4 eniL si sihT 3 eniL si sihT 2 eniL si sihT 1 eniL si sihT

When I want it to look like this:

 This is line 4
 This is line 3
 This is line 2
 This is line 1

How can I do this?

9条回答
Viruses.
2楼-- · 2020-06-21 07:39

You can do something like:

with open('test.txt') as f,  open('output.txt', 'w') as fout:
    fout.writelines(reversed(f.readlines()))
查看更多
我命由我不由天
3楼-- · 2020-06-21 07:45

read() returns the whole file in a single string. That's why when you reverse it, it reverses the lines themselves too, not just their order. You want to reverse only the order of lines, you need to use readlines() to get a list of them (as a first approximation, it is equivalent to s = f.read().split('\n')):

s = f.readlines()
...
f.writelines(s[::-1])
# or f.writelines(reversed(s))
查看更多
Luminary・发光体
4楼-- · 2020-06-21 07:46
f = open("text.txt", "rb")
s = f.readlines()
f.close()
f = open("newtext.txt", "wb")
s.reverse()
for item in s:
  print>>f, item
f.close()
查看更多
The star\"
5楼-- · 2020-06-21 07:56

A sample using list so it will be much easier: I'm sure there answer that are more elegant but this way is clear to understand.

f = open(r"c:\test.txt", "rb")
s = f.read()
f.close()

rowList = []
for value in s:
    rowList.append(value + "\n")
rowList.reverse()


f = open(r"c:\test.txt", "wb")

for value in rowList:
    f.write(value)
f.close()
查看更多
家丑人穷心不美
6楼-- · 2020-06-21 07:58

There are a couple of steps here. First we want to get all the lines from the first file, and then we want to write them in reversed order to the new file. The code for doing this is as follows

lines = []
with open('text.txt') as f:
    lines = f.readlines()

with open('newtext.txt', 'w') as f:
    for line in reversed(lines):
        f.write(line)

Firstly, we initialize a variable to hold our lines. Then we read all the lines from the 'test.txt' file. Secondly, we open our output file. Here we loop through the lines in reversed order, writing them to the output file as we go.

查看更多
爷的心禁止访问
7楼-- · 2020-06-21 07:58

Use it like this if your OS uses \n to break lines

f = open("text.txt", "rb")
 s = f.read()
 f.close()
 f = open("newtext.txt", "wb")
 f.write(reversed(s.split("\n")).join("\n"))
 f.close()

Main thing here is reversed(s.split("\n")).join("\n").

It does the following:

  1. Split your string by line breaks - \n,
  2. resulting an array
  3. reverses the array
  4. merges the array back with linebreaks \n to a string

Here the states:

  1. string: line1 \n line2 \n line3
  2. array: ["line1", "line2", "line3"]
  3. array: ["line3", "line2", "line1"]
  4. string: line3 \n line2 \n line1 \n
查看更多
登录 后发表回答