python 路徑練習

2022-03-14 22:28:11 字數 540 閱讀 4092

目標:

編寫乙個程式,能在當前目錄以及當前目錄的所有子目錄下查詢檔案名包含指定字串的檔案,並列印出相對路徑。

**:

import os

txt_list = # 獲取的list

def find_on_path(path, txt):

"""根據路徑獲取所有子檔案

"""path_list =os.listdir(path)

for x in

path_list:

ifos.path.isfile(os.path.join(path, x)):

if txt in

x:

else

: find_on_path(os.path.join(path, x), txt)

if __name__ == '

__main__':

find_on_path(os.path.abspath('.

'), 'te'

) print(txt_list)

python輸入路徑格式 python路徑格式

環境依賴api 閘道器提供 python 2.7 和 python 3 兩個版本的示例 請您根據自己的 python 版本合理選擇。注意事項最終傳送的 http 請求內至少包含兩個 header date 和 x date 二選一以及 authorization,可以包含更多 header。如果使用...

python練習100例 Python練習100例

filename cnt 0 count the sum of result fori inrange 1,5 forj inrange 1,5 fork inrange 1,5 ifi j andi k andj k print i 100 j 10 k cnt 1 print cnt 程式 題目...

python語法練習 python語法練習

簡單的需求,獲取重複次數最多的資料 沛公import random dict for i in range 1,1000000 rd num random.randrange 0,999,1 if rd num in dict dict rd num dict rd num 1 else dict ...