如下所示:
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),西陵企業(yè)網(wǎng)站建設(shè),西陵品牌網(wǎng)站建設(shè),網(wǎng)站定制,西陵網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,西陵網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。#統(tǒng)計某文件夾下的所有csv文件的行數(shù)(多線程) import threading import csv import os class MyThreadLine(threading.Thread): #用于統(tǒng)計csv文件的行數(shù)的線程類 def __init__(self,path): threading.Thread.__init__(self) #父類初始化 self.path=path #路徑 self.line=-1 #統(tǒng)計行數(shù) def run(self): reader = csv.reader(open(self.path, "r")) # 讀取csv文件 lines=0 for item in reader: # 讀取每一行 lines+=1 self.line=lines #保存行數(shù) print(self.getName(),self.line) path="C:\\Users\\aa\\csv" #所有csv文件所在的文件夾 filelist=os.listdir(path) #存儲了所有的csv文件名 threadlist=[] #線程列表 for filename in filelist: newpath=path+"\\"+filename #代表絕對路徑 mythd=MyThreadLine( newpath) #創(chuàng)建線程類對象 mythd.start() #線程開始干活 threadlist.append(mythd) #增加線程到線程列表 for mythd in threadlist: #遍歷每一個線程 mythd.join() #等待所有線程干完活,再繼續(xù)執(zhí)行以下代碼 linelist=[] #csv文件行數(shù)列表 for mythd in threadlist: linelist.append(mythd.line) print(linelist)