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代码读取文件并将文件反序存入另外一个文件的主要内容,如果未能解决你的问题,请参考以下文章