python 檔案的操作
#操作檔案 格式一
file=open("檔名","讀r/寫 w/rb/wb")#開啟
file.write("要寫入檔案的內容")
file.close()#關閉檔案
#操作檔案 格式二
with open("檔名","讀r/寫 w/rb/wb") as file2:
file2.write("")
info=file2.read()
print(info)
#檔案建立,a的使用,a用來追加檔案裡面的內容
with open("檔名","a") as files:
files.write("要寫入檔案的內容")
#檔案的讀寫,既能讀又能寫
with open("檔名","w+") as file2:
file2.write("")
info=file2.read()
print(info)
![在這裡插入描述](
with open("檔名","讀r/寫 w/rb/wb") as file2:
while true:
info = file2.read(1024)
if len(info)==0:
break
file2.close()
#一次讀一行
with open("檔名","讀r/寫 w/rb/wb") as file2:
while true:
info = file2.readline()
if len(info)==0:
break
file2.close()
#都存成表的形式
with open("檔名","讀r/寫 w/rb/wb") as file2:
絕對路徑/相對路徑用 / 或者是\
os.rename("檔名","路徑+檔名") #檔案複製到指定路徑下
os.remove("路徑") #刪除
os.mkdir("新資料夾名稱")#新建檔名稱
os.rmdir("檔名稱")
os.path.exists("判斷路徑是否存在")
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後面加上...