文件操作的基本功能:

open 打开文件

rw 读写权限

read读取内容、write写入内容

close关闭文件。

代码如下:

#!/usr/bin/python
# -*- coding: utf-8 –*-


file1 = open("file1.txt","r")
file2 = open("file2.txt","w")

s = file1.read()
w = file2.write(s)

file1.close()
file2.close()

 

读书和健身总有一个在路上

本文版权归作者和博客共有,欢迎转载,但未经作者同意必须在文章页面给出原文链接,否则保留追究法律责任的权利。