Python 讀取,儲存檔案

2021-08-28 07:14:09 字數 1658 閱讀 9597

!/usr/bin/env python3.6

coding=utf-8

讀檔案
f = open('test.txt') #開啟檔案

data = f.read() #讀取檔案

print(data)

# oneline = f.readline()

# print oneline #讀取第一行

# lines = f.readlines() #把內容按行讀取至乙個list

# print lines

f.close() #關閉

寫檔案
f = open('output.txt','w') #output.txt - 檔名稱及格式 w - writing

#以這種模式開啟檔案,原來檔案內容會被新寫入的內容覆蓋,如檔案不存在會自動建立

f.write("i'm going to write a string")

out = open('output.txt','w')

out.write("i'm fine \nnow is raining!")

out.close()

從控制台輸入並儲存
out = open('out.txt','w')

while true:

data = input('please input something(enter q quit): ')

if data != 'q':

out.write(data + '\n')

else:

break

從乙個檔案讀取寫入到另乙個檔案中
newfile = open('output.txt')

data = newfile.read()

out = open('out.txt','w')

out.write(data)

newfile.close()

out.close()

eg:將檔案的引數讀取,並計算總和,排序
newfile = open("newfile.txt")

data = newfile.readlines()

newfile.close()

results =

# print('所有的資料:',data) #所有的資料: ['張 23 34 45 91\n', '徐 60 77 51\n', '六 100\n', '諸葛 90 98\n']

for onedata in data:

# print('未分割資料:',onedata) #張 23 34 45 91

line = onedata.split() #分割字串 #['張', '23', '34', '45', '91']

sum = 0

for score in line[1:]: # 切片(取姓名後面的所有成績)

sum += int(score) #將所有的值相加

res = '%s\t:%d\n' % (line[0], sum)

scorefile = open('scorefile.txt','w')

scorefile.writelines(results)

scorefile.close()

初識python 檔案讀取 儲存

上一章最後一題的答案 infors.sort key lambda x x age print infors 可以用open函式開啟乙個已經存在的檔案或者建立乙個新的檔案,open 檔名 訪問模式 f open test.txt w 訪問模式說明r 以唯讀方式開啟檔案。檔案的指標將會放在檔案的開頭。...

CSV檔案讀取儲存技巧

import pandas as pd 假設已經有一csv檔案train.csv,對其處理後儲存為train2.csv 直接儲存如下 train.to csv train2.csv 對train2.csv進行讀取 pd.read csv train2.csv header none 這樣讀取後會發現...

Python入門 15 檔案讀取 儲存

先看檔案讀取,open 1 檔案開啟模式 開啟模式 執行操作 r 以唯讀方式開啟檔案 預設 w 以寫入的方式開啟檔案,會覆蓋已存在的檔案 x 如果檔案已經存在,使用此模式開啟將引發異常 b 以二進位制模式開啟檔案 t 以文字模式開啟 預設 可讀寫模式 可新增到其他模式中使用 u 通用換行符支援 2 ...