如何让python从文本文件中读取和提取字符?

How do I get Python to read and extract words from a text file?

本问题已经有最佳答案,请猛点这里访问。

所以我需要编写一个代码来打开一个txt文件,然后获取该文件的内容并将其放入另一个txt文件,问题是,我不知道如何从文件中提取信息的命令,我做了一些研究,发现这是最接近的事情,但这并不是我需要的:我如何让python从包含诗的文件

这是迄今为止我的代码:

1
2
3
4
myFile = open("Input.txt","wt")
myFile.close()
myFile = open("Output.txt","wt")
myFile.close()


将文本从一个文件复制到另一个文件的示例代码。也许它能帮助你:

1
2
3
4
5
6
inputFile = open("Input.txt","r")
text = inputFile.read()
inputFile.close()
outputFile = open("Output.txt","w")
outputFile.write(text)
outputFile.close()

简单,试试这个

1
2
3
4
5
6
7
8
9
10
#open input file and read all lines and save it in a list
fin = open("Input.txt","r")
f = fin.readlines()
fin.close()

#open output file and write all lines in it
fout = open("Output.txt","wt")
for i in f:
    fout.write(i)
fout.close()