溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python從文件中讀取數(shù)據(jù)的方法講解

發(fā)布時間:2020-09-18 12:47:44 來源:腳本之家 閱讀:158 作者:zsx0728 欄目:開發(fā)技術(shù)

編寫了一個名為learning_python.txt的文件,內(nèi)容如下:

[root@centos7 tmp]# cat learning_python.txt 
In Python you can code;
In Python you can learn object;
In Python you can learn class.

要求:編寫一個程序,它讀取這個文件并打印三次。

  • 1、第一次打印時讀取整個文件;
  • 2、第二次打印時遍歷文件對象;
  • 3、第三次打印時將各行存儲在一個列表中,再在with代碼塊外打印它們。

1、第一次打印的代碼:

filename = 'learning_python.txt'
with open(filename) as file_object:
  contents = file_object.read()
  print(contents.rstrip())

2、第二次打印的代碼:

filename = 'learning_python.txt'
with open(filename) as file_object:
#1  contents = file_object.read()
#1  print(contents.rstrip())
  for line in file_object:
    print(line.rstrip())

3、第三次打印的代碼:

filename = 'learning_python.txt'
with open(filename) as file_object:
#1  contents = file_object.read() 第一次打印,文件作為一個整體
#1  print(contents.rstrip())
#2  for line in file_object: 第二次打印,在with模塊內(nèi)
#2    print(line.rstrip())
  lines = file_object.readlines()
for line in lines: #第三次打印,在with模塊外
  print(line.strip())

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對億速云的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI