def read_file():
""" 讀取檔案 """
file_name = 'test.txt'
# 開啟檔案
# f = open(file_name, encoding = 'utf-8')
with open(file_name, encoding = 'utf-8') as f:
# # 讀取檔案內容
# rest = f.read()
# 讀取指定內容 讀取前8個內容
# rest = f.read(8)
# # 7月31日下午,
# print (rest)
# 讀取指定內容 接上面的讀
# rest = f.read(8)
# # 第十二輪中美經貿
# print (rest)
# 隨機讀取
# f.seek(10)
# print (f.read(5))
# 只讀取一行
# rest = f.readline()
# print (rest)
# 讀取所有行 返回列表
rest = f.readlines()
print (rest)
for i in rest:
print (i)
# 4print (len(rest))
# 關閉檔案
# f.close()
if __name__ == '__main__':
read_file()
python高階讀取檔案 Python讀取檔案內容
開啟檔案之後,就可以讀取檔案的內容,檔案物件提供多種讀取檔案內容的方法。開啟test.txt檔案 f open test.txt r 開啟test.txt檔案 f.close 關閉檔案 test.txt檔案有以下內容 hello world.hello python.hello imooc.讀取若干...
Python檔案讀取
python提供了多種方法實現檔案讀取操作 1 read 2 readline 3 readlines 4 xreadlines 很多人也在糾結到底應該選擇哪種方式,甚至疑問在處理大檔案時應該選擇哪種方式,因為擔心檔案過大導致記憶體佔用率過高甚至無法完全載入。其實,這個問題是多餘的,在引入了迭代器和...
python檔案讀取
1.讀取txt檔案 read 讀取整行檔案 readline 讀取一行資料 readines 讀取所有行的資料 讀取txt檔案 user file open user info.txt r lines user file.readlines forline inlines username line...