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處理txt檔案Python
- Python之檔案處理Python
- Python批處理:檔案操作Python
- python ini 配置檔案處理Python
- Python如何處理檔案的?Python
- 使用 Python 處理 CSV 檔案Python
- Python 如何處理大檔案Python
- Python筆記(五)——檔案處理Python筆記
- Python中可靠地處理檔案Python
- 05 python開發之檔案處理Python
- python file 檔案操作筆記Python筆記
- Python處理CSV檔案的幾個方法Python
- Python3之檔案操作filePython
- Python之錯誤異常和檔案處理Python
- window 批處理檔案
- Go xml檔案處理GoXML
- Python編解碼問題與文字檔案處理Python
- Oracle RAC+ADG新增資料檔案失敗處理(db_create_file_dest)Oracle
- node js 處理PDF檔案JS
- 控制檔案損壞處理
- ultracompare22,檔案處理
- java 檔案處理 工具類Java
- Python通用程式設計 - 第五章:檔案處理Python程式設計
- Python(簡單圖形和檔案處理)程式設計Python程式設計
- 【python012】Python根據頁碼處理PDF檔案的內容Python
- 利用 python 遍歷多級資料夾處理不同檔案Python
- java自己封裝檔案處理Java封裝
- 001.00 一般檔案處理
- Excel VBA 利用FileSystemObject處理檔案ExcelObject
- Hadoop小檔案的處理方式Hadoop
- 用c語言處理檔案C語言
- java中 檔案壓縮處理Java
- Go 語言處理 yaml 檔案GoYAML
- 前端如何處理xml配置檔案?前端XML
- SpringBoot-檔案壓縮處理Spring Boot
- webpack(5)webpack處理css檔案WebCSS