共计 585 个字符,预计需要花费 2 分钟才能阅读完成。
未增加着色性能,这个比拟麻烦,比方变量是什么色,函数是什么色,须要应用正则。
应用 blog 里自带的 python 代码着色,更改如下:print(‘<pre class=”brush:python;toolbar:false”>’ + all + ‘</pre>’)
成果及代码如下:
# -*- coding: utf-8 -*-
codedic={'"':'"',"'":''','<':'<','>':'>','&':'&'}
codekey=codedic.keys()
filename=input('input file path:')
print(filename)
f=open(filename,'r')
all=''
for line in f:
ltmp=''
for c in line:
if c in codekey:
ltmp+=codedic
elif ord(c)==9:
ltmp+=' '
elif ord(c)==32:
ltmp+=' '
else:
ltmp+=c
all=all+'<p style="margin-top: 0px; margin-bottom: 0px;">'+ltmp+'</p>'
f.close()
print('<pre class="brush:python;toolbar:false">' + all + '</pre>')
正文完