file1.write("張飛")
file1.close()
file3 = open("name.txt","a")
file3.write("\n諸葛亮")
file3.close()
file2 = open("name.txt")
print(file2.read())
file2.close()
輸出:張飛
諸葛亮
//列印檔案指標的位置
file6.tell()
//後面不加引數是讀取所有內容,加引數是讀取指標所指位置的內容
file6.read(2)
//seek引數含義:第乙個引數代表偏移位置,第二個引數:0代表從檔案開頭偏移;1代表從當前位置開始偏移;2代表從檔案末尾開始偏移
file6.seek(5, 0)
file1 = open("name.txt", 'w')
file1.write("張飛")
file1.close()
file3 = open("name.txt",'a')
file3.write("\n諸葛亮")
file3.close()
file2 = open("name.txt")
print(file2.read())
file2.close()
輸出:張飛諸葛亮
file4 = open("name.txt")
print('file4',file4.readline())
file5 = open("name.txt")
for line in file5.readlines():
print('file5',line)
print("*****=")
file6 = open("name.txt")
print('當前檔案指標的位置' , file6.tell())
print( '當前位置讀取到的內容 %s' %file6.read(1) )
file6.seek(0)
print('進行seek操作')
print('seek後檔案指標的位置' , file6.tell() )
print('seek後當前位置讀取到的內容' , file6.read(1) )
print('當前檔案指標的位置 %s' , file6.tell() )
file6.close()
輸出內容:當前檔案指標的位置 0
當前位置讀取到的內容 張
進行seek操作
seek後檔案指標的位置 0
seek後當前位置讀取到的內容 張
當前檔案指標的位置 %s 3
2 Python 簡單檔案操作
name sweet1 file1 open s.v name,w 不指定路徑則在絕對路徑生成,另外生成的檔名可以使用 替換 file2 open sweet2.v r file1中的 w 代表可對該檔案進行寫入操作,而 r 代表唯讀 file1.close 關閉檔案 file2.close 還可使...
Python學習2 Python基本語法工具
本篇部落格主要針對函式 檔案 異常,這3個部分的基本使用方法進行學習。函式的定義用def,後面跟著函式名。同c 一樣需要乙個小括號包含傳遞的引數,另外還需要乙個冒號。def myfunction 函式體的內容直接在下面寫出即可,何時編寫結束依然是以縮排為準,python中同樣要有return。如果引...
python入門2 Python入門2
1列表和元組 列表 當索引超出了範圍時,python會報乙個indexerror錯誤 usr bin env python3 coding utf 8 列印s的1,v,9.注意 索引計數從 0 開始 s 1,2,3 a v b 7,8,9 列印1 print s 0 0 列印v print s 1 ...