Python檔案操作

2021-08-02 12:31:45 字數 1281 閱讀 9951

#author f

import sys,time

f = open("file", "r", encoding="utf-8")

print(f.tell())

print(f.readline().rstrip())

print(f.read(5))

print(f.tell())

print(f.read())

print("分割線".center(50, "-"))

print(f.readline()) #空行 指標在最後 無內容

f.seek(0) #指標重置

print(f.readline())

print(f.encoding) #檔案的編碼

print(f.fileno()) #返回檔案的編號

print(f.seekable()) #判斷檔案是否可移動

print(f.readable()) #判斷檔案是否可讀

print(f.writable()) #判斷檔案是否可寫

print(f.closed) #判斷檔案是否關閉

# print(f.flush()) #重新整理 記憶體快取 強制重新整理(實時重新整理到硬碟)

print(dir(f.buffer))

##演示進度條

for i in range(50):

sys.stdout.write("#")

sys.stdout.flush()

time.sleep(0.1)

# f.truncate() #截斷 不指定->從0開始截斷 指定->階段長度 移動不好使 都是從頭開始截斷

f.close()

# file = open("file", "w+", encoding="utf-8") #寫讀模式開啟

# file = open("file", "a+", encoding="utf-8") #追加讀模式開啟

# file = open("file", "ru", encoding="utf-8") #linux和win中回車自動轉換

file = open("file", "r+", encoding="utf-8") #讀寫方式開啟

print(file.readline())

print(file.readline())

print(file.readline())

file.write("-------------") #結果寫在檔案最後

file.close()

python 檔案操作

簡明 python 教程 中的例子,python 執行出錯,用open代替file 可以執行。poem programming is fun when the work is done if you wanna make your work also fun use python f open e ...

python檔案操作

1,將乙個路徑名分解為目錄名和檔名兩部分 a,b os.path.split c 123 456 test.txt print a print b 顯示 c 123 456 test.txt 2,分解檔名的副檔名 a,b os.path.splitext c 123 456 test.txt pri...

Python 檔案操作

1.開啟檔案 如下 f open d test.txt w 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只寫 如果檔案 不存在,則自動建立檔案 a 附加到檔案末尾 r 讀寫 如果需要以二進位制方式開啟檔案,需要在mode後面加上...