iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 15
0
自我挑戰組

python30天自學筆記系列 第 15

Day 15. 文字檔案的讀取和儲存-1

  • 分享至 

  • xImage
  •  

今天要來講:Python 文字檔案的讀取和儲存

檔案操作流程

開啟檔案>讀取或寫入>關閉檔案

基本語法

檔案物件=open(檔案路徑,mode=開啟模式)

開啟模式

讀取模式- r
寫入模式- w
讀寫模式- r+

讀取檔案

讀取全部文字

檔案物件.read()

一次讀取一行

for變數in檔案物件:
從檔案依序讀取每行文字到變數中

寫入檔案

寫入文字

檔案物件.write(字串)

寫入換行符號

檔案物件.write("範例文字\n")

關閉檔案

基本語法

檔案物件.close()

程式範例

測試英文
https://ithelp.ithome.com.tw/upload/images/20190930/20121028W2lVtJewDT.jpg
https://ithelp.ithome.com.tw/upload/images/20190930/20121028GsmMhoWmha.jpg
測試中文,但出現亂碼
https://ithelp.ithome.com.tw/upload/images/20190930/20121028w2NkKTDHG7.jpg
https://ithelp.ithome.com.tw/upload/images/20190930/20121028hX07y7402a.jpg
故在開啟時指定編碼
https://ithelp.ithome.com.tw/upload/images/20190930/20121028nwZ8KPtIi6.jpg
https://ithelp.ithome.com.tw/upload/images/20190930/20121028Fao6MjHABs.jpg


上一篇
Day 14. Python Package 封包的設計與使用
下一篇
Day 16. 文字檔案的讀取和儲存-2
系列文
python30天自學筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言