10 1 從檔案中讀取資料小結練習

2021-08-14 20:54:57 字數 1306 閱讀 1327

10-1 python

python

知識,其中每一行都以「

in python you can

」打頭。將這個檔案命名為

learning_python.txt

,並將其儲存到為完成本章練習而編寫的程式所在的目錄中。編寫一

個程式,它讀取這個檔案,並將你所寫的內容列印三次:第一次列印時讀取整個檔案;

第二次列印時遍歷檔案物件;第三次列印時將各行儲存在乙個列表中,再在

with

**塊外列印它們。

先在同**的目錄下建立乙個叫做note的文字檔案

第一遍列印,一次讀取整個檔案

with open("note") as file_object:

content = file_object.read()

print(content)

第二遍列印,遍歷檔案物件

with open("note") as file_object:

for line in file_object:

print(line.rstrip())

第三遍列印,with模組外列印

with open("note") as file_object:

content = file_object.readlines()

for line in content:

print(line.rstrip())

10-2 c

語言學習筆記:可使用方法

replace()

將字串中的特定單詞都替換為另一

個單詞。下面是乙個簡單的示例,演示了如何將句子中的

'dog'

替換為'cat'

:>>> message = "i really like dogs."

>>> message.replace('dog', 'cat')

'i really like cats.'

讀取你剛建立的檔案

learning_python.txt

中的每一行,將其中的

python

都替換為另

一門語言的名稱,如

c。將修改後的各行都列印到螢幕上。

with open("note") as file_object:

content = file_object.read()

print(content.replace("python","c"))

從XML檔案中讀取資料

using system using system.data using system.configuration using system.web using system.web.security using system.web.ui using system.web.ui.webcontro...

從fig檔案中讀取資料

open figname.fig h get gca,children data get h,cdata 2 如果你的fig檔案中影象是由單條曲線繪製而成,比如說plot命令生成的,通過以下方式輸出橫座標,縱座標的取值 open figname.fig h line get gca,children...

Python 從檔案中讀取資料

學習python時,發現在使用with open pi digits.text as file object時,使用相對路徑,總是出現notfoundfileerror的錯誤,後來想到使用絕對路徑。書中提到的在linux環境中路徑使用的是斜槓 在windows環境中使用的是反斜槓 而經過實踐,發現只...