Python 檔案操作

2021-08-16 20:35:05 字數 1569 閱讀 3644

spring cloud 實戰(乾貨)

mybatis 實戰(乾貨)

spring boot 實戰(乾貨)

react 入門實戰(乾貨)

構建中小型網際網路企業架構(乾貨)

python 學習(乾貨)

)print "你輸入的內容是: "

, str

請輸入:hello python!

你輸入的內容是: hello python!

)print "你輸入的內容是: "

, str

請輸入:[x*5 for

xin range(2,10,2)]

你輸入的內容是: [10, 20, 30, 40]

fo = open("foo.txt"

, "w"

)print "檔名: "

, fo.name

print "是否已關閉 : "

, fo.closed

print "訪問模式 : "

, fo.mode

print "末尾是否強制加空格 : "

, fo.softspace

檔名: foo.txt

是否已關閉 : false

訪問模式 : w

末尾是否強制加空格 : 0

fo = open("foo.txt"

, "w"

)print "檔名: "

, fo.name

# 關閉開啟的檔案

fo.close()

fo = open("foo.txt"

, "w"

)fo.write( "www.runoob.com!\nvery good site!\n")

# 關閉開啟的檔案

fo.close()

fo = open("foo.txt"

, "r+"

)str = fo.read(10)

print "讀取的字串是 : "

, str

# 關閉開啟的檔案

fo.close()

fo = open("foo.txt"

, "r+"

)str = fo.read(10)

print "讀取的字串是 : "

, str

# 查詢當前位置

position = fo.tell()

print "當前檔案位置 : "

, position

# 把指標再次重新定位到檔案開頭

position = fo.seek(0, 0)

str = fo.read(10)

print "重新讀取字串 : "

, str

# 關閉開啟的檔案

fo.close()

當前檔案位置 : 10

重新讀取字串 : www.runoob

os.rename( "test1.txt"

, "test2.txt"

)# 刪除乙個已經存在的檔案test2.txt

os.remove("test2.txt"

)

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後面加上...