zero to hero python教學

40423232 四設一乙 郭金豪

間接編輯檔案?

python也可以用來編輯文字檔,甚至連excel(.csv檔)的表格都能填上去!
首先當然是建立檔案,為了最大化利用python,我們也能拿python來建立檔案
fileName='fd.txt'
write='w'
file = open(fileName,mode=write)
就能產生一個叫fd的txt檔(就是大家熟悉的筆記本)

編輯內容

延續前面建立的內容繼續寫下:
file.write('ch11,done')
file.write('ch12,undo\n')
file.close
print('file written successful')
重開筆記本就會在裡面輸入文字內容
甚至能搭配input指令
data=input('輸入字句')
file = open(fileName,mode=write)
file.write(data)
file.close()
就可以自由輸入來編輯了

心得與自評

單純看這個指令非常多此一舉,但感覺如果搭配上其他語法一起使用,就可以變成一個實用的編輯器,語法往往都需要互相做配合才能體現出其效果
個人給自己65分