Python基礎任務5

1.file a.打開文件方式(讀寫兩種方式) open() 函數 open() 方法用於打開一個文件,並返回文件對象。 寫文件:html with open('python.txt', 'w', encoding='utf8') as fp: fp.write(string) 讀文件:python f = open('D:/python.txt', 'r') 通常形式爲:web open(f
相關文章
相關標籤/搜索