檔案操作 08

2022-09-08 04:24:08 字數 1133 閱讀 9245

檔案操作的初識

f1 = open('e:\乙個神秘的****.txt',encoding='utf-8',mode='r')

content = f1.read()

print(content)

f1.close()

檔案操作的讀

r, rb , r+ , r+b ,四種模式

r : read()** read(n) readline() readlienes()

for ***

# f = open('e:\檔案1.txt',encoding='utf-8',mode='r')

# s = f.read()

# print(s)

# f.close()

#readlines 返回乙個列表,列表中的每個元素是原檔案的每一行

# f = open('e:\檔案1.txt',encoding='utf-8',mode='r')

# s = f.readlines()

# print(s)

# f.close()

#for 讀取

# f = open('e:\檔案1.txt',encoding='utf-8')

# for line in f:

# print(line)

# f.close()

# f = open('a

cars = ['魯a32444','魯b12333','京b8989m','⿊c49678','⿊c46555','滬 b25041']

locals =

# 方法一

for i in cars:

# if locals[i[0]] not in dic:

# dic[locals[i[0]]] = 1

# else:

# dic[locals[i[0]]] += 1

# print(dic)

方法二# for i in cars:

# dic[locals[i[0]]] = dic.get(locals[i[0]],0) + 1

# print(dic)

檔案操作 08

檔案操作 一 檔案的內部內容進行操作 1.open 檔案路徑 mode 模式 預設是唯讀 encoding 編碼 路徑必須寫上字尾 txt等 f open d 小 txt mode r encoding utf 8 content f.readlines line1 f.readline strip...

08 檔案操作

位元組流 inputstream和outputstream 過濾流 bufferedinputstream和bufferedoutputstream 過濾流用於給流增加乙個緩衝的功能,緩衝區越大,效率越高,典型的犧牲空間換時間 08.01.txt public class testtxt 寫入文字 ...

C語言之檔案操作08 總結

c程式的檔案操作 共涵蓋7個例題,包含格式列印,檔案讀取,條件查詢,矩陣的檔案操作,資料格式輸入及呼叫計算等內容。檔案操作使得程式有更強的拓展性,使其可以單獨儲存資料,這為程式的除錯和優化打下了堅實的基礎,為我們實現大規模計算提供了可能。至此,相信大家對檔案操作也有了比較好的認識,無非是寫入 讀取 ...