文件操作

open 函數(shù)

1、

文件句柄 = open('文件路徑', '模式')

打開文件時(shí)另凌,需要指定文件路徑和以何等方式打開文件曙强,打開后,即可獲取該文件句柄途茫,日后通過(guò)此文件句柄對(duì)該文件操作碟嘴。

打開文件的模式有:

r ,只讀模式【默認(rèn)】
w囊卜,只寫模式【不可讀娜扇;不存在則創(chuàng)建;存在則清空內(nèi)容栅组;】
x雀瓢, 只寫模式【不可讀;不存在則創(chuàng)建玉掸,存在則報(bào)錯(cuò)】
a刃麸, 追加模式【可讀; 不存在則創(chuàng)建司浪;存在則只追加內(nèi)容泊业;】
"+" 表示可以同時(shí)讀寫某個(gè)文件

r+把沼, 讀寫【可讀,可寫】
w+吁伺,寫讀【可讀饮睬,可寫】
x+ ,寫讀【可讀篮奄,可寫】
a+捆愁, 寫讀【可讀,可寫】
"b"表示以字節(jié)的方式操作

rb 或 r+b
wb 或 w+b
xb 或 w+b
ab 或 a+b
注:以b方式打開時(shí)窟却,讀取到的內(nèi)容是字節(jié)類型昼丑,寫入時(shí)也需要提供字節(jié)類型

2、操作

class TextIOWrapper(_TextIOBase):
    """
    Character and line based layer over a BufferedIOBase object, buffer.
    
    encoding gives the name of the encoding that the stream will be
    decoded or encoded with. It defaults to locale.getpreferredencoding(False).
    
    errors determines the strictness of encoding and decoding (see
    help(codecs.Codec) or the documentation for codecs.register) and
    defaults to "strict".
    
    newline controls how line endings are handled. It can be None, '',
    '\n', '\r', and '\r\n'.  It works as follows:
    
    * On input, if newline is None, universal newlines mode is
      enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
      these are translated into '\n' before being returned to the
      caller. If it is '', universal newline mode is enabled, but line
      endings are returned to the caller untranslated. If it has any of
      the other legal values, input lines are only terminated by the given
      string, and the line ending is returned to the caller untranslated.
    
    * On output, if newline is None, any '\n' characters written are
      translated to the system default line separator, os.linesep. If
      newline is '' or '\n', no translation takes place. If newline is any
      of the other legal values, any '\n' characters written are translated
      to the given string.
    
    If line_buffering is True, a call to flush is implied when a call to
    write contains a newline character.
    """
    def close(self, *args, **kwargs): # real signature unknown
        關(guān)閉文件
        pass

    def fileno(self, *args, **kwargs): # real signature unknown
        文件描述符  
        pass

    def flush(self, *args, **kwargs): # real signature unknown
        刷新文件內(nèi)部緩沖區(qū)
        pass

    def isatty(self, *args, **kwargs): # real signature unknown
        判斷文件是否是同意tty設(shè)備
        pass

    def read(self, *args, **kwargs): # real signature unknown
        讀取指定字節(jié)數(shù)據(jù)
        pass

    def readable(self, *args, **kwargs): # real signature unknown
        是否可讀
        pass

    def readline(self, *args, **kwargs): # real signature unknown
        僅讀取一行數(shù)據(jù)
        pass

    def seek(self, *args, **kwargs): # real signature unknown
        指定文件中指針位置
        pass

    def seekable(self, *args, **kwargs): # real signature unknown
        指針是否可操作
        pass

    def tell(self, *args, **kwargs): # real signature unknown
        獲取指針位置
        pass

    def truncate(self, *args, **kwargs): # real signature unknown
        截?cái)鄶?shù)據(jù)夸赫,僅保留指定之前數(shù)據(jù)
        pass

    def writable(self, *args, **kwargs): # real signature unknown
        是否可寫
        pass

    def write(self, *args, **kwargs): # real signature unknown
        寫內(nèi)容
        pass

    def __getstate__(self, *args, **kwargs): # real signature unknown
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __next__(self, *args, **kwargs): # real signature unknown
        """ Implement next(self). """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    buffer = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    closed = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    encoding = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    errors = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    line_buffering = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    name = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    newlines = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    _CHUNK_SIZE = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

    _finalizing = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default

3菩帝、管理上下文

為了避免打開文件后忘記關(guān)閉,可以通過(guò)管理上下文憔足,即:

with open('log','r') as f:
        
    ...

如此方式胁附,當(dāng)with代碼塊執(zhí)行完畢時(shí)酒繁,內(nèi)部會(huì)自動(dòng)關(guān)閉并釋放文件資源

with open('log1') as obj1, open('log2') as obj2:
    pass
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末滓彰,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子州袒,更是在濱河造成了極大的恐慌揭绑,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件郎哭,死亡現(xiàn)場(chǎng)離奇詭異他匪,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)夸研,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門邦蜜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人亥至,你說(shuō)我怎么就攤上這事悼沈。” “怎么了姐扮?”我有些...
    開封第一講書人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵絮供,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我茶敏,道長(zhǎng)壤靶,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任惊搏,我火速辦了婚禮贮乳,結(jié)果婚禮上忧换,老公的妹妹穿的比我還像新娘。我一直安慰自己塘揣,他們只是感情好包雀,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著亲铡,像睡著了一般才写。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上奖蔓,一...
    開封第一講書人閱讀 49,730評(píng)論 1 289
  • 那天赞草,我揣著相機(jī)與錄音,去河邊找鬼吆鹤。 笑死厨疙,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的疑务。 我是一名探鬼主播沾凄,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼知允!你這毒婦竟也來(lái)了撒蟀?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤温鸽,失蹤者是張志新(化名)和其女友劉穎保屯,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體涤垫,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡姑尺,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了蝠猬。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片切蟋。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖榆芦,靈堂內(nèi)的尸體忽然破棺而出柄粹,到底是詐尸還是另有隱情,我是刑警寧澤歧杏,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布镰惦,位于F島的核電站,受9級(jí)特大地震影響犬绒,放射性物質(zhì)發(fā)生泄漏旺入。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望茵瘾。 院中可真熱鬧礼华,春花似錦、人聲如沸拗秘。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)雕旨。三九已至扮匠,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間凡涩,已是汗流浹背棒搜。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留活箕,地道東北人力麸。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像育韩,于是被迫代替她去往敵國(guó)和親克蚂。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容