文件的基本操作
python操作文件的步骤:
1、打开文件:
变量名=open(filename,mode,encoding)
2、操作文件:
变量名.read()
变量名.writer(s)
3、关闭文件:
变量名.close()
def my_write():
#1、(创建)打开文件
file=open('test.txt','w',encoding='utf-8')
#2、操作文件
file.write('北京欢迎你')
#3、关闭文件
file.close()
def my_read():
file=open('test.txt','r',encoding='utf-8')
s=file.read()
print(s)
file.close()
if __name__ == '__main__':
#调用函数
my_write()