2019寒假第三次做業

學習視頻課程(20')

實驗題(30'+120')

熱身題(30')

image

基本題 (120')

獲取用戶請求(15')

image

請求格式處理(25')

image

格式處理代碼

import re
f=open("pakcet_capture.txt")
while str :
    str = f.readline()
    ip=re.findall(r"IP (.+?): Flags",str)
    length=re.findall(r"length (.+?)",str)
    print " ".join(ip+length)
f.close()
相關文章
相關標籤/搜索