def readfiletoexcel():
wb = xlwt.Workbook()
sheet = wb.add_sheet('端口信息')
#['Interface', 'PHY', 'Protocol', 'InUti', 'OutUti', 'inErrors', 'outErrors']
sheet.write(0,0,'Interface')
sheet.write(0,1,'PHY')
sheet.write(0,2,'Protocol')
sheet.write(0,3,'InUti')
sheet.write(0,4,'OutUti')
sheet.write(0,5,'inErrors')
sheet.write(0,6,'outErrors')
f = open("interface.txt", "r", encoding='utf-8')
lines = f.readlines()
result = "".join(lines)
res = result.split("\n")
j=0
for i in range(0,len(res)):
if len(re.findall(r'Interface',res[i]))>0:
j = i
regex = re.compile(r'GE.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+.+',re.S)
if len(re.findall(regex, res[i])) > 0:
str = re.split('\s+',res[i])
print(str)
sheet.write(i-j,0,str[0])
sheet.write(i-j,1,str[1])
sheet.write(i-j,2,str[2])
sheet.write(i-j,3,str[3])
sheet.write(i-j,4,str[4])
sheet.write(i-j,5,str[5])
sheet.write(i-j,6,str[6])
wb.save("result.xls")
readfiletoexcel()
python往excel中写端口信息
Guaiacum_2024-10-12 23:13
相关推荐
游客5202 分钟前
opencv中的各种滤波器简介Monly214 分钟前
Java(若依):修改Tomcat的版本boligongzhu5 分钟前
DALSA工业相机SDK二次开发(图像采集及保存)C#版Eric.Lee20215 分钟前
moviepy将图片序列制作成视频并加载字幕 - python 实现7yewh7 分钟前
嵌入式Linux QT+OpenCV基于人脸识别的考勤系统 项目Dontla10 分钟前
vscode怎么设置anaconda python解释器(anaconda解释器、vscode解释器)waicsdn_haha19 分钟前
Java/JDK下载、安装及环境配置超详细教程【Windows10、macOS和Linux图文详解】_WndProc21 分钟前
C++ 日志输出qq_4335545430 分钟前
C++ 面向对象编程:+号运算符重载,左移运算符重载qq_529025291 小时前
Torch.gather