zoukankan      html  css  js  c++  java
  • open函数

    打开文件

    操作文件

    一 打开文件

    文件句柄 = open(‘文件路径’,‘模式’)

    打开文件时,需要指定萎蔫路径以何等方式打开文件,打开后,即可获取该文件句柄,日后通过此文件句柄对该文件操作。

    打开文件的模式有:

      r,只读模式(默认)

      w,只写模式。【不可读;不存在则创建;存在则删除内容;】

      a,追加模式。【可读;不存在则创建;存在则只追加内容;】

    “+”表示可以同时读写某个文件

      r+,可读写文件。【可读;可写;可追加;】

      w+,写读

      a+,同a

    “U”表示在读取时,可以将 自动转换成 (与r或r+模式同时使用)

      rU

      r+U

    “b”表示处理二进制文件(如:FTP发送上传ISO镜像文件,Linux可忽略,Windows处理二进制文件时需标注)

      rb

      wb 

      ab

    二 操作

    简单的写入

    f = open('test.log',‘w’)   #文件路径,选取模式

    f.write(‘asdwda’)           #写入

    f.close()                        #关闭,生成文件

    读取

    f = open(‘test.log’,‘r’,encoding=‘utf-8’)  

    ret = f.read(读取几个字符)

    f.close()

    print(ret)

    f = open(‘test.log’,‘r’,encoding=‘utf-8’) 

    f.tell()  #查看当前指针位置

    f.seek(1)#指定当前指针位置

    f.close()

  • 相关阅读:
    Leetcode#179 Largest Number
    Leetcode#155 Min Stack
    Leetcode#14 Longest Common Prefix
    Leetcode#101 Symmetric Tree
    Leetcode#172 Fractorial Trailing Zero
    Leetcode#28 Implement strStr()
    Leetcode#46 Permutations
    Leetcode#48 Rotate Image
    Leetcode#134 Gas station
    Leetcode#137 Single Number II
  • 原文地址:https://www.cnblogs.com/Donald-92/p/7786766.html
Copyright © 2011-2022 走看看