python添加行号:
<a href="https://www.gaodaima.com/tag/filename" title="查看更多关于filename的文章" target="_blank">filename</a>='demo.py' with open(filename,'r')as fp: <a href="https://www.gaodaima.com/tag/lines" title="查看更多关于lines的文章" target="_blank">lines</a>=fp.readlines() #读取所有行 maxLength=max(map(len,lines)) #最长行的长度 for index,line in enumerate(lines): #遍历所有行 newLine=line.rstrip() #删除每行右侧的空白字符 newLine=newLine+' '*(maxLength+5-len(newLine)) #在每行固定位置添加行号 newLine=newLine+'#'+str(index+1)+' ' #添加行号 lines[index]=newLine with open(filename[:-3]+'_new.py','w')as fp: #将结果写入文件 fp.writelines(lines)
www#gaodaima.com来源gaodaimacom搞#^代%!码网搞代码
readlines() 方法用于读取所有行(直到结束符 EOF)并返回列表,该列表可以由 Python 的 for… in … 结构进行处理。
更多Python知识请关注云海天Python教程栏目。
来源:搞代码网:原文地址:https://www.gaodaima.com