【python】解析log文件,並獲取狀態爲200的處理平均時間

#line format: [http url] [status code] [respond time(ms)] def getProcessTime(line): """ """ if line: parts = line.split(' ') status = parts[1] time = parts[2][:-1]
相關文章
相關標籤/搜索