您好,登錄后才能下訂單哦!
addhosts項(xiàng)目已接近尾聲,我很想知道我們寫(xiě)了多少行代碼。
一、需求
統(tǒng)計(jì)源碼目錄下py文件的代碼行數(shù)。
二、腳本分析
獲取指定目錄下所有的.py文件,對(duì)文件進(jìn)行遍歷;
讀取每個(gè)文件,對(duì)文件內(nèi)容進(jìn)行遍歷,過(guò)濾掉空行和注釋?zhuān)?br />
三、實(shí)現(xiàn)及結(jié)果
#coding:utf-8 import os class StatLines(object): def __init__(self,path): self.path = path def stat_lines(self): file_list = os.listdir(self.path) os.chdir(self.path) total = 0 for file in file_list: if file.endswith('.py'): lines = open(file, encoding='utf-8').readlines() count = 0 for line in lines: if line == '\n': continue elif line.startswith('#'): continue else: count += 1 total += count print('%s has %d lines' %(file,count)) print('total lines is: %d' %total) if __name__ == '__main__': sl = StatLines('E:\\Python_Project\\addhost_v2\\addhosts') sl.stat_lines()
運(yùn)行結(jié)果如下:
四、總結(jié)
問(wèn)題:
在執(zhí)行open(file).readlines()時(shí),遇到了如下錯(cuò)誤
“UnicodeDecodeError: 'gbk' codec can't decode byte 0xaf in position 548: illegal multibyte sequence”
解決方法:
在open時(shí),設(shè)置encoding='utf-8'后,問(wèn)題得到解決。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。