Python筆記(五)——檔案處理
1.
# 開啟pi_digits.txt檔案
with open('pi_digits.txt') as file_object:
contents = file_object.read()
print(contents) # 在read函式到達檔案末尾會返回一個空字串,顯示出來比原始檔多一個空行
print(contents.rstrip()) # 使用rstrip函式可以刪除這個空行
filename = 'pi_digits.txt'
with open(filename) as file_object:
for line in file_object:
print(line)
filename = 'pi_digits.txt'
with open(filename) as file_object:
lines = file_object.readlines()
pi_string = ''
for line in lines:
pi_string += line.strip() #刪除空格
print(pi_string)
print(len(pi_string))
filename = 'programming.txt'
with open(filename, 'w') as file_object: #open(filename, 'w')寫入文字並清空已有,open(filename, 'a')附加文字,不清空已有文字
file_object.write("I love programming.")
相關文章
- python 檔案處理Python
- python處理檔案Python
- python檔案處理Python
- python處理txt檔案Python
- Python之檔案處理Python
- Python通用程式設計 - 第五章:檔案處理Python程式設計
- Python批處理:檔案操作Python
- python ini 配置檔案處理Python
- Python如何處理檔案的?Python
- 使用 Python 處理 CSV 檔案Python
- Python 如何處理大檔案Python
- python file 檔案操作筆記Python筆記
- Python中可靠地處理檔案Python
- 05 python開發之檔案處理Python
- Python學習筆記|Python之檔案操作Python筆記
- Python學習筆記|Python之特殊檔案Python筆記
- Python處理CSV檔案的幾個方法Python
- 【筆記】基於Python的數字影象處理筆記Python
- (五)Linux之檔案與目錄管理以及文字處理Linux
- Python之錯誤異常和檔案處理Python
- window 批處理檔案
- Go xml檔案處理GoXML
- python筆記-資料型別&檔案操作Python筆記資料型別
- Python編解碼問題與文字檔案處理Python
- Java使用javacv處理影片檔案過程記錄Java
- 記一次PMML檔案的處理過程
- java異常處理筆記Java筆記
- 【廖雪峰python入門筆記】Unicode編碼_UnicodeDecodeError處理Python筆記UnicodeError
- python學習筆記:第8天 檔案操作Python筆記
- node js 處理PDF檔案JS
- 控制檔案損壞處理
- ultracompare22,檔案處理
- java 檔案處理 工具類Java
- Python(簡單圖形和檔案處理)程式設計Python程式設計
- 字典--Python學習筆記(五)Python筆記
- 【python012】Python根據頁碼處理PDF檔案的內容Python
- python自然語言處理學習筆記(八)—— 句法分析Python自然語言處理筆記
- Python深度學習(處理文字資料)--學習筆記(十二)Python深度學習筆記