python怎麼讀取txt文件-Python讀寫txt文本文件

一、文件的打開和創建 1 2 3 4 5 >>> f= open('/tmp/test.txt') >>> f.read() 'hello python! hello world! ' >>> f 二、文件的讀取步驟:打開 -- 讀取 -- 關閉 1 2 3 4 >>> f= open('/tmp/test.txt') >>> f.read() 'hello python! hello world
相關文章
相關標籤/搜索