python文件格式轉換

一、文件的基本操作 1、打開文件 1 f=open('text.txt',r)  2、讀取文件 print(f.read) 3、關閉文件 f.close() 比較好用的是運用with with open('text.txt','r') as f print(f.read) 好處是可以避免一次錯誤 二、文件的轉換 1、xlsx轉換爲csv格式 csv:逗號分隔值(Comma-Separated V
相關文章
相關標籤/搜索