美文网首页
【Python】文件对象的声明及基本操作

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

作者: Natsuka | 来源:发表于2018-08-24 21:44 被阅读64次
    • 文件的界定:指向一个本地存储的文件,是一个链接或一个映射。
    • 文件的申明 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)) # <class '_io.TextIOWrapper'>
    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】文件对象的声明及基本操作

          本文链接:https://www.haomeiwen.com/subject/ipgiiftx.html