python學習11 檔案操作

2022-08-02 00:54:19 字數 702 閱讀 6108

1.檔案

open(file, mode='r', buffering=-1, encoding=none, errors=none, newline=none, closefd=true, opener=none)  

file:檔案路徑;其中雙斜槓表示轉義也可以用反斜槓代替這兩個斜槓。

mode:開啟方式

其中:-w表示先將以前的清空,然後在重新寫入。

-a,表示繼續寫入。

2.檔案相關操作方法。

其中:read(x)表示讀取x個字元。不捨引數表示讀取剩餘的所有元素。

3.乙個小例項

5.os檔案操作

python學習11 檔案,流

開啟檔案 語法如下 open name,module buffering 模式 和緩衝引數都是可選的 f open r c text somefile.txt 如果檔案不存在traceback most recent call last file line 1,in f open r c text ...

python學習(九) 檔案操作

1 檔案開啟 1.開啟檔案,得到檔案控制代碼並賦值給乙個變數 f open a.txt r encoding utf 8 預設開啟模式就為r open預設編碼為gbk r,w,a 2.通過控制代碼對檔案進行操作 data f.read 3.關閉檔案 f.close 1 讀取 f.readable 是...

Python學習筆記 四 檔案操作

讀取鍵盤輸入 buf raw input please input your name buf raw input 開啟檔案 如果hello.txt不存在 fp open hello.txt w w是說建立這個檔案,以寫的方式開啟 fp.write text fp.close 如果hello.txt...