Python檔案讀寫操作

2021-08-19 23:36:37 字數 991 閱讀 2325

1.讀檔案

with open("xx") as file_object:

temp=file_object.read()

print(temp.rstrip()) #因為末尾有換行符,會多一行空格

with open("xx") as file_object:

for line in file_object:

print(line.rstrip())

with open("xx") as file_object:

lines=file_object.readlines()

for line in lines:

print(line.rstrip())

2.寫檔案

with open("xx") as file_object:  #清空原始檔案

file_object.write()

with open('xx','a') as file_object:#不覆蓋原始檔案,在其後面繼續

file_object.write("***")

3.使用者輸入

獲取輸入:message=input("..")

型別轉換:message=int(message)

4.儲存資料 (json模組)

import json

numbers=[1,2,3,4,5,6,7]

filename='numbers.json'

#資料儲存

with open(filename,'w') as f_obj:

json.dump(numbers,f_obj)

#資料讀取

with open(filename) as f_obj:

username=json.load(f_obj)

python 讀 寫檔案操作

python中也提供類似於c語言中的open read write函式,下面是我根據看過的內容的乙個python讀 寫檔案的 段 讀檔案 在python的執行資料夾中新建乙個 123.txt 的檔案,輸入2341.rfp open 123.txt 開啟乙個 123.txt 得到乙個檔案物件 分配記憶...

python檔案讀寫操作

讀寫檔案是最常見的io操作,python內建了讀寫檔案的函式,用法和c是相容的。在磁碟上讀寫檔案的功能都是由作業系統提供的,現在作業系統不允許普通的程式直接操作磁碟 所以,讀寫檔案就是請求作業系統開啟乙個檔案物件 通常稱為檔案描述符 然後,通過作業系統提供的介面從這個檔案物件中讀取資料 讀檔案 或者...

Python 檔案讀寫操作

一 python中對檔案 資料夾操作時經常用到的os模組和shutil模組常用方法。1.得到當前工作目錄,即當前python指令碼工作的目錄路徑 os.getcwd 2.返回指定目錄下的所有檔案和目錄名 os.listdir 3.函式用來刪除乙個檔案 os.remove 4.刪除多個目錄 os.re...