Python 起手式 (文件操做)

一. 打開一個文件,而且讀出每一行的內容     f=open("in.txt") line=f.readline() while line: print(line,end='') line=f.readline() f.close() open()函數返回一個新的文件對象,調用該對象能夠執行各類文件操做,readline() 方法讀取一行的內容,包括結尾的換行符,讀到文件結尾處
相關文章
相關標籤/搜索