python檔案操作思維導圖
f = open(「test.txt」, 「r」)
str = f.read(3)
print"讀取的資料是 : ", str
position = f.tell()
print"當前檔案位置 : ", position
str = f.read(3)
print"讀取的資料是 : ", str
position = f.tell()
print"當前檔案位置 : ", position
f.close()
f = open(「test.txt」, 「r」)
str = f.read(30)
print"讀取的資料是 : ", str
position = f.tell()
print"當前檔案位置 : ", position
f.seek(5,0)
position = f.tell()
print"當前檔案位置 : ", position
f.close()
demo:把位置設定為:離檔案末尾,3位元組處
f = open(「test.txt」, 「r」)
position = f.tell()
print"當前檔案位置 : ", position
f.seek(-3,2)
str = f.read()
print"讀取的資料是 : ",
str f.close()
os.getcwd()——得到當前工作的目錄。
os.listdir()——指定所有目錄下所有的檔案和目錄名
os.remove()——刪除指定檔案
os.rmdir()——刪除指定目錄 :該目錄不能為空
os.mkdir()——建立目錄
os.path.isfile()——判斷指定物件是否為檔案:是返回true,否則false
os.path.isdir()——判斷指定物件是否為目錄:是true,否則false
os.path.exists()——檢驗指定的物件是否存在:是true,否則false.
os.path.split()——返回路徑的目錄和檔名
os.getcwd()——獲得當前工作的目錄(get current work dir)
os.system()——執行shell命令
os.chdir()——改變目錄到指定目錄
os.path.getsize()——獲得檔案的大小,如果為目錄,返回0
os.path.abspath()——獲得絕對路徑
os.path.join(path, name)——連線目錄和檔名
17.os.path.basename(path)——返回檔名
os.path.dirname(path)——返回檔案所在目錄
05 python條件語句(if)
1.概念 條件語句,即判斷,判斷是否滿足條件,滿足條件即執行某些 不滿足則無法執行某些 2.語法 if 判斷條件 條件成 所執 的 1 條件成 所執 的 2 3.體驗 if true print 我是條件成 執 的 1 print 我是條件成 執 的 2 print 我是 論條件是否成 都要執 的 ...
05 Python語句與語法
1.i o語句 2.條件控制語句 3.迴圈語句1.i o語句 2.條件控制語句 2.1 if else語句 if a if語句也可單獨存在 exp a 執行表示式 a.else exp b 執行表示式 b.2.2 if elif else語句if a exp a 執行表示式 a.elif b exp...
05 Python 列表 list 介紹
目錄 1.列表介紹 2.常見操作 3.列表推導式 4.序列型別通用方法 extend iterable 將另乙個集合中的元素逐一新增到列表中 insert index,object 在指定位置index前插入元素object coding utf 8 time 2021 1 30 author 大海...