python代码读取文件并将文件反序存入另外一个文件

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python代码读取文件并将文件反序存入另外一个文件相关的知识,希望对你有一定的参考价值。

python代码读取文件并将文件反序存入另外一个文件

 

#data[::-1] 实现了反转(reverse)

#python代码读取文件并将文件反序存入另外一个文件

# Open the file in write mode
f1 = open("output1.txt", "w")

# Open the input file and get
# the content into a variable data
with open("file.txt", "r") as myfile:
	data = myfile.read()

# For Full Reversing we will store the
# value of data into new variable data_1
# in a reverse order using [start: end: step],
# where step when passed -1 will reverse
# the string
data_1 = data[::-1]

# Now we will write the fully reverse
# data in the output1 file using
# following command
f1.write(data_1)

f1.close()

 

 

参考&#

以上是关于python代码读取文件并将文件反序存入另外一个文件的主要内容,如果未能解决你的问题,请参考以下文章

python 如何将列表写入文件

python 读取大文本文件并存入numpy时过于费时的问题及猜测

Window Batch编程示例

python 读取整个目录的所有文件夹并存入

小记 用python进行排序

C++如何逐行读取txt文件,并将读取出来的数据进行运算导入到另一个文件中。