1. 程式人生 > >【零基礎】Python3學習課後練習題(二十七)

【零基礎】Python3學習課後練習題(二十七)

本文是跟著魚C論壇小甲魚零基礎學習Python3的視訊學習的,課後題也是跟隨每一課所附屬的題目來做的,根據自己的理解和標準答案記錄的筆記。

第三十課

動動手:

0.編寫一個程式,統計當前目錄下每個檔案型別的檔案數,程式實現如圖:

import os

all_files = os.listdir(os.curdir)
type_dict = dict()

for each_file in all_files:
    if os.path.isdir(each_file):
        type_dict.setdefault('資料夾', 0)
        type_dict['資料夾'] += 1
    else:
        ext = os.path.splitext(each_file)[1]
        type_dict.setdefault(ext, 0)
        type_dict[ext] += 1

for each_type in type_dict.keys():
    print('該資料夾下共有型別為【%s】的檔案 %d 個' % (each_type, type_dict[each_type]))

1. 編寫一個程式,計算當前資料夾下所有檔案的大小,程式實現如圖:

答:

import os
all_files = os.listdir(os.curdir)
file_dict = dict()
for each_file in all_files:
    file_dict.setdefault(each_file, os.path.getsize(each_file))
    print('%s的大小為:%d bytes' % (each_file, file_dict[each_file]))

2. 編寫一個程式,使用者輸入檔名以及開始搜尋的路徑,搜尋該檔案是否存在。如遇到資料夾,則進入資料夾繼續搜尋,程式實現如圖:

答:

import os
def file_found(start_dir, file_name):
    os.chdir(start_dir)
    for each_file in os.listdir(os.curdir):
        if each_file == file_name:
            print(os.getcwd() + os.sep + each_file)
        if os.path.isdir(each_file):
            file_found(each_file, file_name)
            os.chdir(os.pardir)
start_dir = input('請輸入待查詢的初始目錄:')
file_name = input('請輸入需要查詢的目標檔案:')
file_found(start_dir, file_name)

3. 編寫一個程式,使用者輸入開始搜尋的路徑,查詢該路徑下(包含子資料夾內)所有的視訊格式檔案(要求查詢mp4, rmvb, avi的格式即可),並把建立一個檔案(vedioList.txt)存放所有找到的檔案的路徑,程式實現如圖:

答:

import os

vedio_list = []

def search_file(start_dir):
    os.chdir(start_dir)
    for each_file in os.listdir(os.curdir):
        if os.path.isfile(each_file):
            file_ext = os.path.splitext(each_file)[1]
            if file_ext in ['.mp4', '.rmvb', '.avi']:
                vedio_list.append(os.getcwd() + os.sep + each_file + os.linesep)
        if os.path.isdir(each_file):
            search_file(each_file)  # 遞迴呼叫
            os.chdir(os.pardir)  # 遞迴呼叫後切記返回上一層目錄
    return vedio_list

start_dir = input('請輸入待查詢的初始目錄:')
vedio_list = search_file(start_dir)
f = open(os.getcwd() + os.sep + 'VedioList.txt', 'w')
f.writelines(vedio_list)
f.close()

4. 編寫一個程式,使用者輸入關鍵字,查詢當前資料夾內(如果當前資料夾內包含資料夾,則進入資料夾繼續搜尋)所有含有該關鍵字的文字檔案(.txt字尾),要求顯示該檔案所在的位置以及關鍵字在檔案中的具體位置(第幾行第幾個字元),程式實現如圖:

答:

import os


def print_pos(key_dict):  # 負責列印
    keys = key_dict.keys()
    keys = sorted(keys)  # 由於字典是無序的,我們這裡對行數進行排序
    for each_key in keys:
        print('關鍵字出現在第 %s 行,第 %s 個位置。' % (each_key, str(key_dict[each_key])))


def pos_in_line(line, key):
    pos = []
    begin = line.find(key)
    while begin != -1:
        pos.append(begin + 1)  # 使用者的角度是從1開始數
        begin = line.find(key, begin + 1)  # 從下一個位置繼續查詢

    return pos


def search_in_file(file_name, key):
    f = open(file_name)
    count = 0  # 記錄行數
    key_dict = dict()  # 字典,使用者存放key所在具體行數對應具體位置

    for each_line in f:
        count += 1
        if key in each_line:
            pos = pos_in_line(each_line, key)  # key在每行對應的位置
            key_dict[count] = pos

    f.close()
    return key_dict


def search_files(key, detail):
    all_files = os.walk(os.getcwd())
    txt_files = []

    for i in all_files:
        for each_file in i[2]:
            if os.path.splitext(each_file)[1] == '.txt':  # 根據字尾判斷是否文字檔案
                each_file = os.path.join(i[0], each_file)
                txt_files.append(each_file)

    for each_txt_file in txt_files:
        key_dict = search_in_file(each_txt_file, key)
        if key_dict:
            print('================================================================')
            print('在檔案【%s】中找到關鍵字【%s】' % (each_txt_file, key))
            if detail in ['YES', 'Yes', 'yes', 'Y', 'y']:
                print_pos(key_dict)


key = input('請將該指令碼放於待查詢的資料夾內,請輸入關鍵字:')
detail = input('請問是否需要列印關鍵字【%s】在檔案中的具體位置(YES/NO):' % key)
search_files(key, detail)

內容補足:

  • OS模組中關於檔案/目錄常用的函式使用方法
函式名 使用方法
getcwd() 返回當前工作目錄
chdir() 改變工作目錄
listdir(path='.') 列舉指定目錄中的檔名('.'表示當前目錄,'..'表示上一級目錄)
mkdir(path) 建立單層目錄,如果目錄已存在丟擲異常
makedirs(path) 遞迴建立多層目錄,如果該目錄已存在則丟擲異常,注意:'E:\a\b'和'E:\a\c'並不會衝突)
remove(path) 刪除檔案
rmdir(path) 刪除單層目錄,如果該目錄非空則丟擲異常
removedirs(path) 遞迴刪除目錄,從子目錄到父目錄逐層嘗試刪除,遇到目錄非空則丟擲異常
rename(old,new) 將檔案old重新命名為new
system(command) 執行系統的shell命令
walk(top) 遍歷top引數指定路徑下的所有子目錄,並將結果返回一個三元組(路徑,[目錄],[檔案])

以下是支援路徑操作中常用到的一些定義,支援所有平臺

函式名 使用方法
os.curdir 指代當前目錄
os.pardir 指代上一級目錄
os.sep 輸出作業系統特定的路徑分隔符(在Windows下為'\',Linux下為'/')
os.linesep 當前平臺使用的行終止符(在Windows下為'\r\n',Linux下為'\n')
os.name 指代當前使用的作業系統(包括'posix'、'nt'、'mac'、'os2'、'ce'、'java')
  • os.path模組中關於路徑常用的函式使用辦法
函式名 使用方法
basename(path) 去掉目錄路徑,單獨返回檔名
dirname(path) 去掉檔名,單獨返回目錄路徑
join(path1[,path2[,...]]) 將path1和path2各部分組合成一個路徑名
split(path) 分割檔名和路徑,返回(f_path, f_name)元組。如果完全使用目錄,它也會將最後一個目錄作為檔名分離,且不會判斷檔案或者目錄是否存在
splitext(path) 分離檔名和副檔名,返回(f_name, f_extension)元組。
getsize(file) 返回指定檔案的尺寸,單位是位元組
getatime(file) 返回指定檔案最近的訪問時間(浮點型秒數,可用time模組的gmtime()或localtime()函式換算)
getctime(file) 返回指定檔案的建立時間(浮點型秒數,可用time模組的gmtime()或localtime()函式換算)
getmtime(file) 返回指定檔案最新的修改時間(浮點型秒數,可用time模組的gmtime()或localtime()函式換算)

以下為函式返回True或False

函式名 使用方法
exists(path) 判斷指定路徑(目錄或檔案)是否存在
isabs(path) 判斷指定路徑是否為絕對路徑
isdir(path) 判斷指定路徑是否存在且是一個目錄
isfile(path) 判斷指定路徑是否存在且是一個檔案
islink(path) 判斷指定路徑是否存在且是一個符號連結
ismount(path) 判斷指定路徑是否存在且是一個掛載點
samefile(path1,path2) 判斷path1和path2兩個路徑是否指向同一個檔案