【Python】文件对象的声明及基本操作

  • 文件的界定:指向一个本地存储的文件,是一个链接或一个映射。
  • 文件的申明 open语句
    open('路径','模式',encoding='编码')
  • 路径,以字符串的形式编写
path1 = 'C:\\Users\\Administrator\\Desktop\lianxi'
path2 = r'C:\Users\Administrator\Desktop\lianxi'
path3 = 'test.text'
  • 模式,以文本文件为例
    r:读取文件,默认
    w:写入
    rw:读取+写入
    a:追加
  • f.read():读取文件,读取后光标会留在末尾
  • f.seek(0):使用该命令,将光标移动到开始
  • f.close():关闭文件链接,养成好习惯

新建一个txt文件,用open读取。

path = r'C:\Users\Administrator\Desktop\lianxi\test.txt'
f = open(path,'r')
print(type(f)) # 
print(f) #<_io.TextIOWrapper name='C:\\Users\\Administrator\\Desktop\\lianxi\\test.txt' mode='r' encoding='cp936'>
print(f.read())
# hello word!
# Let's learn Python together.
f.seek(0) # 0
f.close()

你可能感兴趣的:(【Python】文件对象的声明及基本操作)