python 3.0 文件操作基本流程

Posted karenbest

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 3.0 文件操作基本流程相关的知识,希望对你有一定的参考价值。

1、r

data = open(‘孙悟空‘,‘r‘,encoding = ‘utf-8‘).read()

print(data)

#该操作为文件的读操作,

2、w

f = open(‘孙悟空‘,‘w‘,encoding = ‘utf-8‘)

f.write(‘hello world‘)

f.write(‘karen‘)  #不换行写入两个,不覆盖  ==>hello worldkaren

#该操作为文件的写操作,覆盖原来内容重新编辑

f = open(‘孙悟空2‘,‘w‘,encoding = ‘utf-8‘)

f.write(‘hello world‘)

#也可创建新的文件进行写操作

3、 f = open(‘孙悟空‘,‘a‘,encoding = ‘utf-8‘)

f.append(‘hello world‘)

#不影响原内容的情况下继续编辑

4、f.readline() #打印第一行的内容 光标在取到的字符的后面

5、f.readlines()#打印多行

6、

impor time;time.sleep(50)   #延时缓冲区

open() 打开文件

f.fileno() 文件描述符

f.tell() 打印时光标位置

f.seek(0) 移动光标位置

f.close() 关闭文件

f.flush() 清空缓冲区,显示到终端

f.truncate 截断,删除后面的内容

以上是关于python 3.0 文件操作基本流程的主要内容,如果未能解决你的问题,请参考以下文章

python基本之文件

This is my first blog----文件操作基本流程

Python:文件操作总结1——文件基本操作

python文件操作

文件操作 python3

python文件处理