Python學習筆記:文件操做、異常處理、JSON

讀文件 file_object = open(filename) 打開filename文件,返回該文件的對象 file_object.close() 關閉文件 with open(filename) as file_object: with會在在不須要訪問文件後將其關閉 注意with行末尾也要跟着: file_object.read() 把文件內容讀取成一串字符串 file_object.read
相關文章
相關標籤/搜索