Python 檔案(file)處理 例子
Python 檔案處理很簡單,使用內建的檔案類.
請看下面的例子:
開啟一個檔案
#open返回一個檔案類 infile = open("file_name") #讀整個檔案內容到 file_content file_content = infile.read() #讀取所有行,存為list(列表) infile.seek(0) file_content_list = infile.readlines()
建立一個新檔案
outfile = open("new_file_name", "w") #寫檔案 outfile.write("檔案內容")
注意點
函式 writelines(list)
函式writelines可以將list寫入到檔案中,但是不會在list每個元素後加換行符,所以如果想每行都有換行符的話需要自己再加上。
sample_list = [line+'\n' for line in sample_list] outfile.wirtelines(sample_list)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29829936/viewspace-2149213/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python處理檔案Python
- python檔案處理Python
- python 檔案處理Python
- Python 檔案處理Python
- python處理txt檔案Python
- Python 批量處理檔案Python
- Python處理大檔案Python
- Python之檔案處理Python
- Python如何處理檔案的?Python
- Python 如何處理大檔案Python
- python ini 配置檔案處理Python
- Python批處理:檔案操作Python
- 使用 Python 處理 CSV 檔案Python
- Python筆記(五)——檔案處理Python筆記
- Python3中檔案處理Python
- FileSystemObject 的例子(處理驅動器、資料夾、檔案) (轉)Object
- 05 python開發之檔案處理Python
- Python檔案處理-專題筆記Python筆記
- Python中可靠地處理檔案Python
- uploadify前臺上傳檔案,java後臺處理的例子Java
- [R]檔案處理
- bat處理檔案BAT
- bat檔案處理BAT
- Python處理CSV檔案的幾個方法Python
- python file 檔案操作筆記Python筆記
- File檔案處理工具(不斷更新)
- Linux學習之檔案處理命令(二)目錄處理命令 && 檔案處理命令Linux
- Python之錯誤異常和檔案處理Python
- 3.python檔案操作及異常處理Python
- window 批處理檔案
- Go xml檔案處理GoXML
- JAVA ZIP 處理檔案Java
- 批處理檔案命令
- 檔案處理函式函式
- Windows批處理檔案Windows
- bat批處理檔案BAT
- Python3之檔案操作filePython
- Python編解碼問題與文字檔案處理Python