python面試的100題(2)

def print_directory_contents(sPath): """ 這個函數接收文件夾的名稱作爲輸入參數 返回該文件夾中文件的路徑 以及其包含文件夾中文件的路徑 """ 給出的結果如下: def print_directory_contents(sPath): import os for s_child in os.listdir(s_path): s_child_path
相關文章
相關標籤/搜索